wok view libao/receipt @ rev 12381

Up: lftp to 4.3.5.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Apr 19 22:28:19 2012 +0000 (2012-04-19)
parents 37cd2a99997f
children 54ce68091a85
line source
1 # SliTaz package receipt.
3 PACKAGE="libao"
4 VERSION="0.8.8"
5 CATEGORY="multimedia"
6 SHORT_DESC="Cross-platform audio output library and plugins"
7 MAINTAINER="rj.rohit@gmail.com"
8 DEPENDS="glibc-base alsa-lib"
9 BUILD_DEPENDS="alsa-lib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://downloads.xiph.org/releases/ao/"
12 WGET_URL="$WEB_SITE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --enable-alsa09 --disable-arts \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib $fs/etc
28 cp -a $_pkg/usr/lib/ao $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 # Add conf file
32 cp -a stuff/libao.conf $fs/etc/
34 }