wok view audiofile/receipt @ rev 15681

Remove WEBSITE var because is empty
author Stanislas Leduc <shann@slitaz.org>
date Fri Dec 20 20:40:30 2013 +0100 (2013-12-20)
parents da729d3d7d17
children 4abbe39ea1e2
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="GPL2"
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 }