1
0

Makefile 972 B

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