wok view pulseaudio/receipt @ rev 20102

Add plsh & pypdf2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 09 13:07:28 2017 +0200 (2017-10-09)
parents 7f233a31ffe2
children 6b67e13afe50
line source
1 # SliTaz package receipt.
3 PACKAGE="pulseaudio"
4 VERSION="8.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 WEB_SITE="https://www.freedesktop.org/wiki/Software/PulseAudio/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="http://freedesktop.org/software/pulseaudio/releases/$TARBALL"
14 DEPENDS="libcap libjson-c libsndfile flac libvorbis dbus gdbm libcap attr \
15 speex libsamplerate libltdl"
16 BUILD_DEPENDS="pkg-config libtool automake autoconf intltool m4 libcap-dev \
17 libjson-c-dev libsndfile-dev flac-dev libvorbis-dev util-linux-uuid-dev \
18 dbus-dev speex-dev udev-dev libsamplerate-dev alsa-lib-dev"
19 SPLIT="pulseaudio-locale pulseaudio-man pulseaudio-vala pulseaudio-dev"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./bootstrap.sh
25 ./configure \
26 --sysconfdir=/etc \
27 --localstatedir=/var \
28 --disable-bluez4 \
29 --disable-systemd-daemon \
30 --disable-systemd-login \
31 --disable-systemd-journal \
32 --disable-oss-output \
33 --disable-oss-wrapper \
34 --disable-esound \
35 --disable-rpath \
36 --with-udev-rules-dir=/etc/udev/rules.d \
37 $CONFIGURE_ARGS &&
38 make &&
39 make -j1 install
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 cook_copy_folders bin
46 cook_copy_files *.pa *.conf *.rules *.desktop *.so*
47 find $fs -name '*console-kit*' -delete
48 }