Makefile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.2
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= ff516b3ccd2bcc31e68f460cd316093f
  8. PKG_DESCR:= A streaming media server
  9. PKG_SECTION:= multimedia
  10. PKG_DEPENDS:= libcurl libvorbis libpthread libxml2 libxslt
  11. PKG_BUILDDEP:= curl libvorbis libxml2 libxslt
  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,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. TCPPFLAGS+= -I${STAGING_TARGET_DIR}/usr/include/libxml2
  17. CONFIGURE_ARGS+= --disable-yp \
  18. --with-curl="yes" \
  19. --with-curl-config="${STAGING_TARGET_DIR}/usr/bin/curl-config" \
  20. --with-ogg="${STAGING_TARGET_DIR}/usr" \
  21. --with-vorbis="${STAGING_TARGET_DIR}/usr" \
  22. --with-speex="no" \
  23. --with-theora="no" \
  24. --with-xslt-config="${STAGING_TARGET_DIR}/usr/bin/xslt-config"
  25. post-install:
  26. ${INSTALL_DIR} ${IDIR_ICECAST}/etc
  27. ${CP} ${WRKINST}/etc/icecast.xml ${IDIR_ICECAST}/etc/
  28. ${INSTALL_DIR} ${IDIR_ICECAST}/usr/bin
  29. ${INSTALL_BIN} ${WRKINST}/usr/bin/icecast ${IDIR_ICECAST}/usr/bin/
  30. ${INSTALL_DIR} ${IDIR_ICECAST}/usr/share/icecast
  31. ${CP} ${WRKINST}/usr/share/icecast/admin \
  32. ${IDIR_ICECAST}/usr/share/icecast/
  33. ${CP} ${WRKINST}/usr/share/icecast/web \
  34. ${IDIR_ICECAST}/usr/share/icecast/
  35. include ${TOPDIR}/mk/pkg-bottom.mk