blob: 77d61159b30d2d7738ebc8baec3524890ff1e033 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Multiple cat utility"
AUTHOR = "Michael 'Mickey' Lauer <mlauer@vanille-media.de>"
SECTION = "console"
require python-helpers.inc
SRCREV = "${FSO_PYTHONHELPERS_SRCREV}"
PV = "0.0.0+gitr${SRCPV}"
PR = "r1"
do_install() {
install -d ${D}${bindir}
install -m 0755 multicat/multicat ${D}${bindir}
}
RDEPENDS_${PN} = "\
python-core \
"
PACKAGE_ARCH_${PN} = "all"
|