wok view libsndfile/receipt @ rev 16154

remove libtaz, see http://hg.slitaz.org/slitaz-dev-tools/rev/712c188572fc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 28 14:10:02 2014 +0000 (2014-03-28)
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 }