wok view audiofile/receipt @ rev 13253

syslinux: updates locales
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 15 21:33:42 2012 +0200 (2012-08-15)
parents 01d294e2fcd0
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="audiofile"
4 VERSION="0.3.4"
5 CATEGORY="development"
6 SHORT_DESC="provides a uniform and elegant API for accessing a variety of audio file formats"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="LGPL"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.68k.org/~michael/audiofile/"
11 WGET_URL="http://audiofile.68k.org/$TARBALL"
13 DEPENDS="alsa-lib"
14 BUILD_DEPENDS="alsa-lib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make && 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/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }