Makefile 1007 B

1234567891011121314151617181920212223242526272829303132
  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
  10. PKG_BUILDDEP:= autotool
  11. PKG_URL:= http://speex.org/
  12. PKG_SITES:= http://downloads.us.xiph.org/releases/speex/
  13. PKG_LIBNAME:= libspeex
  14. PKG_OPTS:= dev
  15. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  16. include ${TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,LIBSPEEX,libspeex,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. AUTOTOOL_STYLE:= autoreconf
  19. CONFIGURE_ARGS+= --without-ogg --disable-oggtest --enable-fixed-point
  20. XAKE_FLAGS+= bin_PROGRAMS=""
  21. libspeex-install:
  22. ${INSTALL_DIR} ${IDIR_LIBSPEEX}/usr/lib
  23. ${CP} ${WRKINST}/usr/lib/libspeex*.so* ${IDIR_LIBSPEEX}/usr/lib/
  24. include ${TOPDIR}/mk/pkg-bottom.mk