Makefile 946 B

123456789101112131415161718192021222324252627282930
  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:= libshout
  5. PKG_VERSION:= 2.2.2
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 4f75fc9901c724b712c371c9a1e782d3
  8. PKG_DESCR:= Library which can be used to write a source client for streaming
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= libvorbis libogg
  11. PKG_URL:= http://directory.fsf.org/project/libshout
  12. PKG_SITES:= http://downloads.us.xiph.org/releases/libshout/
  13. include ${TOPDIR}/mk/package.mk
  14. $(eval $(call PKG_template,LIBSHOUT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CONFIGURE_STYLE= gnu
  16. CONFIGURE_ARGS+= --with-speex=no \
  17. --with-theora=no
  18. BUILD_STYLE= auto
  19. INSTALL_STYLE= auto
  20. post-install:
  21. ${INSTALL_DIR} ${IDIR_LIBSHOUT}/usr/lib
  22. ${CP} ${WRKINST}/usr/lib/libshout.so.* ${IDIR_LIBSHOUT}/usr/lib/
  23. include ${TOPDIR}/mk/pkg-bottom.mk