introduce hwids package, providing usb.ids and co
[openadk.git] / package / flac / Makefile
blobf687cd53976bc73be55b2094b3c6d78790f7256a
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include ${ADK_TOPDIR}/rules.mk
6 PKG_NAME:= flac
7 PKG_VERSION:= 1.3.0
8 PKG_RELEASE:= 1
9 PKG_HASH:= fa2d64aac1f77e31dfbb270aeb08f5b32e27036a52ad15e69a77e309528010dc
10 PKG_DESCR:= free lossless audio codec library
11 PKG_SECTION:= libs/audio
12 PKG_URL:= http://flac.sourceforge.net
13 PKG_SITES:= http://downloads.xiph.org/releases/flac/
14 PKG_LIBNAME:= libflac
15 PKG_OPTS:= dev
17 include ${ADK_TOPDIR}/mk/package.mk
19 $(eval $(call PKG_template,LIBFLAC,libflac,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
21 CONFIGURE_ARGS+= --enable-asm-optimizations \
22 --disable-xmms-plugin \
23 --disable-cpplibs \
24 --disable-ogg
26 libflac-install:
27 ${INSTALL_DIR} ${IDIR_LIBFLAC}/usr/lib
28 ${CP} ${WRKINST}/usr/lib/libFLAC.so* ${IDIR_LIBFLAC}/usr/lib/
30 include ${ADK_TOPDIR}/mk/pkg-bottom.mk