Makefile 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. PKG_NAME:= icecast
  5. PKG_VERSION:= 2.3.3
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 2b5d1b40778922e5f6431b7758c359ad
  8. PKG_DESCR:= streaming media server
  9. PKG_SECTION:= multimedia
  10. PKG_DEPENDS:= libcurl libvorbis libpthread libxml2 libxslt
  11. PKG_BUILDDEP:= curl libvorbis libxml2 libxslt autotool
  12. PKG_URL:= http://www.icecast.org/
  13. PKG_SITES:= http://downloads.us.xiph.org/releases/icecast/
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,ICECAST,icecast,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. AUTOTOOL_STYLE:= autoreconf
  17. TARGET_CPPFLAGS+= -I${STAGING_TARGET_DIR}/usr/include/libxml2
  18. CONFIGURE_ARGS+= --disable-yp \
  19. --with-curl="yes" \
  20. --with-curl-config="${STAGING_TARGET_DIR}/usr/bin/curl-config" \
  21. --with-ogg="${STAGING_TARGET_DIR}/usr" \
  22. --with-vorbis="${STAGING_TARGET_DIR}/usr" \
  23. --with-speex="no" \
  24. --with-theora="no" \
  25. --with-xslt-config="${STAGING_TARGET_DIR}/usr/bin/xslt-config"
  26. icecast-install:
  27. ${INSTALL_DIR} ${IDIR_ICECAST}/etc
  28. ${CP} ${WRKINST}/etc/icecast.xml ${IDIR_ICECAST}/etc/
  29. ${INSTALL_DIR} ${IDIR_ICECAST}/usr/bin
  30. ${INSTALL_BIN} ${WRKINST}/usr/bin/icecast ${IDIR_ICECAST}/usr/bin/
  31. ${INSTALL_DIR} ${IDIR_ICECAST}/usr/share/icecast
  32. ${CP} ${WRKINST}/usr/share/icecast/admin \
  33. ${IDIR_ICECAST}/usr/share/icecast/
  34. ${CP} ${WRKINST}/usr/share/icecast/web \
  35. ${IDIR_ICECAST}/usr/share/icecast/
  36. include ${TOPDIR}/mk/pkg-bottom.mk