blob: 678b42a06d6fcb8c223fa9a2eb50cf80d4fb3af5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Multiplex multiple input streams into stdout using \n as separators"
HOMEPAGE="https://github.com/vi/fdlinecombine"
SRC_URI="https://github.com/vi/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_install() {
dobin ${PN}
}
|