blob: f6e1ed3aaeadcc8cb28f5cf12eb6f1b943951cf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
LICENSE = "GPL"
DESCRIPTION = "ShoutCast-compatible streamer"
FILE_PR = "r0"
SRC_URI = "http://www.litestream.org/litestream/${P}.tar.gz"
inherit autotools
do_install () {
install -d ${D}${bindir}
install -m 755 litestream ${D}${bindir}
install -m 755 literestream ${D}${bindir}
install -m 755 source ${D}${bindir}
install -m 755 client ${D}${bindir}
install -m 755 server ${D}${bindir}
}
|