123456789101112131415161718192021222324252627282930 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${TOPDIR}/rules.mk
- PKG_NAME:= flac
- PKG_VERSION:= 1.3.0
- PKG_RELEASE:= 1
- PKG_MD5SUM:= 13b5c214cee8373464d3d65dee362cdd
- PKG_DESCR:= free lossless audio codec library
- PKG_SECTION:= libs
- PKG_URL:= http://flac.sourceforge.net
- PKG_SITES:= http://downloads.xiph.org/releases/flac/
- PKG_LIBNAME:= libflac
- PKG_OPTS:= dev
- include ${TOPDIR}/mk/package.mk
- $(eval $(call PKG_template,LIBFLAC,libflac,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
- CONFIGURE_ARGS+= --enable-asm-optimizations \
- --disable-xmms-plugin \
- --disable-cpplibs \
- --disable-ogg
- libflac-install:
- ${INSTALL_DIR} ${IDIR_LIBFLAC}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libFLAC.so* ${IDIR_LIBFLAC}/usr/lib/
- include ${TOPDIR}/mk/pkg-bottom.mk
|