Makefile 956 B

1234567891011121314151617181920212223242526272829303132
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include ${TOPDIR}/rules.mk
  6. PKG_NAME:= libshout
  7. PKG_VERSION:= 2.2.2
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 4f75fc9901c724b712c371c9a1e782d3
  10. PKG_DESCR:= Library which can be used to write a source client for streaming
  11. PKG_SECTION:= libs
  12. PKG_DEPENDS:= libvorbis libogg
  13. PKG_URL:= http://directory.fsf.org/project/libshout
  14. PKG_SITES:= http://downloads.us.xiph.org/releases/libshout/
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,LIBSHOUT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. CONFIGURE_STYLE= gnu
  18. CONFIGURE_ARGS+= --with-speex=no \
  19. --with-theora=no
  20. BUILD_STYLE= auto
  21. INSTALL_STYLE= auto
  22. post-install:
  23. ${INSTALL_DIR} ${IDIR_LIBSHOUT}/usr/lib
  24. ${CP} ${WRKINST}/usr/lib/libshout.so.* ${IDIR_LIBSHOUT}/usr/lib/
  25. include ${TOPDIR}/mk/pkg-bottom.mk