blob: 506bff662b4f06a260704691dacf1869fa260da4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
LICENSE = "GPL"
DESCRIPTION = "ShoutCast-compatible streamer"
PR = "r0"
SRC_URI = "http://www.litestream.org/litestream/${PN}-${PV}.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}
}
|