wok view libsndfile/receipt @ rev 16054

ARM downgrade wpa_supplicant to 0.7.3 to make it compile (we realy need it)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Mar 10 18:05:36 2014 +0100 (2014-03-10)
parents bc341388571d
children 90efe33adc11
line source
1 # SliTaz package receipt.
3 PACKAGE="libsndfile"
4 VERSION="1.0.23"
5 CATEGORY="multimedia"
6 SHORT_DESC="A C library for reading and writing files containing sampled sound"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.mega-nerd.com/libsndfile/"
11 WGET_URL="$WEB_SITE/files/$TARBALL"
13 DEPENDS="alsa-lib flac libvorbis"
14 BUILD_DEPENDS="alsa-lib alsa-lib-dev flac-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --disable-sqlite $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }