baremetal fix
[openadk.git] / package / icecast / Makefile
blobdf4fe30b76a2fdd473a8d14e26e198e85b84ff53
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include ${ADK_TOPDIR}/rules.mk
6 PKG_NAME:= icecast
7 PKG_VERSION:= 2.3.3
8 PKG_RELEASE:= 1
9 PKG_HASH:= 1b1d06f5f83c9a983cd28cc78aa90e4038f933511b3d20d7fd2cfc116645c36d
10 PKG_DESCR:= streaming media server
11 PKG_SECTION:= mm/audio
12 PKG_DEPENDS:= libcurl libvorbis libxml2 libxslt
13 PKG_BUILDDEP:= curl libvorbis libxml2 libxslt
14 PKG_NEEDS:= threads
15 PKG_URL:= http://www.icecast.org/
16 PKG_SITES:= http://downloads.us.xiph.org/releases/icecast/
18 DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
20 include ${ADK_TOPDIR}/mk/package.mk
22 $(eval $(call PKG_template,ICECAST,icecast,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
24 AUTOTOOL_STYLE:= autoreconf
25 TARGET_CPPFLAGS+= -I${STAGING_TARGET_DIR}/usr/include/libxml2
26 CONFIGURE_ARGS+= --disable-yp \
27 --with-curl="yes" \
28 --with-curl-config="${STAGING_TARGET_DIR}/usr/bin/curl-config" \
29 --with-ogg="${STAGING_TARGET_DIR}/usr" \
30 --with-vorbis="${STAGING_TARGET_DIR}/usr" \
31 --with-speex="no" \
32 --with-theora="no" \
33 --with-xslt-config="${STAGING_TARGET_DIR}/usr/bin/xslt-config"
35 icecast-install:
36 ${INSTALL_DIR} ${IDIR_ICECAST}/etc
37 ${CP} ${WRKINST}/etc/icecast.xml ${IDIR_ICECAST}/etc/
38 ${INSTALL_DIR} ${IDIR_ICECAST}/usr/bin
39 ${INSTALL_BIN} ${WRKINST}/usr/bin/icecast ${IDIR_ICECAST}/usr/bin/
40 ${INSTALL_DIR} ${IDIR_ICECAST}/usr/share/icecast
41 ${CP} ${WRKINST}/usr/share/icecast/admin \
42 ${IDIR_ICECAST}/usr/share/icecast/
43 ${CP} ${WRKINST}/usr/share/icecast/web \
44 ${IDIR_ICECAST}/usr/share/icecast/
46 include ${ADK_TOPDIR}/mk/pkg-bottom.mk