blob: bb82d59557460167a79684f974256f83e9da68e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "Icecast streaming media server"
LICENSE = "GPLv2"
DEPENDS = "libvorbis libogg libtheora speex libxslt libxslt-native"
PR = "r2"
SRC_URI = "http://downloads.us.xiph.org/releases/icecast/${PN}-${PV}.tar.gz"
# disable curl
EXTRA_OECONF = " \
--without-curl \
--with-ogg=${STAGING_LIBDIR} \
--with-vorbis=${STAGING_LIBDIR} \
--with-theora=${STAGING_LIBDIR} \
--with-speex=${STAGING_LIBDIR} \
"
S = "${WORKDIR}/${PN}-${PV}"
inherit autotools
|