Makefile 988 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:= speex
  5. PKG_VERSION:= 1.2rc1
  6. PKG_RELEASE:= 3
  7. PKG_MD5SUM:= c4438b22c08e5811ff10e2b06ee9b9ae
  8. PKG_DESCR:= open source patent-free speech compression codec
  9. PKG_SECTION:= libs/audio
  10. PKG_URL:= http://speex.org/
  11. PKG_SITES:= http://downloads.us.xiph.org/releases/speex/
  12. PKG_LIBNAME:= libspeex
  13. PKG_OPTS:= dev
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,LIBSPEEX,libspeex,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  17. AUTOTOOL_STYLE:= autoreconf
  18. CONFIGURE_ARGS+= --without-ogg --disable-oggtest --enable-fixed-point
  19. XAKE_FLAGS+= bin_PROGRAMS=""
  20. libspeex-install:
  21. ${INSTALL_DIR} ${IDIR_LIBSPEEX}/usr/lib
  22. ${CP} ${WRKINST}/usr/lib/libspeex*.so* ${IDIR_LIBSPEEX}/usr/lib/
  23. include ${TOPDIR}/mk/pkg-bottom.mk