wok view libsndfile/receipt @ rev 13145

obconf: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 10 09:41:24 2012 +0200 (2012-07-10)
parents cdafe774a067
children 8d6f480bf664
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 DEPENDS="alsa-lib flac libvorbis"
9 BUILD_DEPENDS="alsa-lib alsa-lib-dev flac-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.mega-nerd.com/libsndfile/"
12 WGET_URL="$WEB_SITE/files/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --disable-sqlite $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }