wok view pulseaudio/receipt @ rev 17007

pulseaudio: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 12 15:37:17 2014 +0200 (2014-08-12)
parents 154c29d2a3ac
children e6eab2a29e8b
line source
1 # SliTaz package receipt.
3 PACKAGE="pulseaudio"
4 VERSION="5.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="A sound system for POSIX OSes."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2.1 GPL2 MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.pulseaudio.org/"
11 WGET_URL="http://www.freedesktop.org/software/pulseaudio/releases/$TARBALL"
13 DEPENDS="libcap libjson-c libsndfile flac libvorbis dbus"
14 BUILD_DEPENDS="pkg-config libtool automake autoconf intltool m4 libcap-dev \
15 libjson-c-dev libsndfile-dev flac-dev libvorbis-dev util-linux-uuid-dev \
16 dbus-dev speex-dev udev-dev libsamplerate-dev alsa-lib-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./bootstrap.sh
22 ./configure --prefix=/usr \
23 --sysconfdir=/etc \
24 $CONFIGURE_ARGS &&
25 make &&
26 make -j 1 DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib/pulseaudio
33 cp -a $install/etc $fs
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/lib/pulseaudio/*.so* $fs/usr/lib/pulseaudio
37 cp -a $install/usr/lib/pulse-$VERSION $fs/usr/lib
38 }