wok-6.x view pulseaudio/receipt @ rev 23454

updated pulseaudio packages (12.2 -> 13.0)
author Hans-G?nter Theisgen
date Fri Apr 03 13:36:20 2020 +0100 (2020-04-03)
parents 230b437620ca
children 26c95e297eed
line source
1 # SliTaz package receipt.
3 PACKAGE="pulseaudio"
4 VERSION="13.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/$PACKAGE/releases/$TARBALL"
14 DEPENDS="attr dbus flac gcc83-lib-base gdbm jack-audio-connection-kit \
15 libcap libjson-c libsamplerate libsndfile libltdl libvorbis \
16 speex"
17 BUILD_DEPENDS="alsa-lib-dev autoconf automake dbus-dev file flac-dev \
18 gcc83 intltool jack-audio-connection-kit-dev libcap-dev \
19 libjson-c-dev libsamplerate-dev libsndfile-dev libtool libvorbis-dev \
20 m4 pkg-config speex-dev udev-dev util-linux-uuid-dev"
21 SPLIT="pulseaudio-locale pulseaudio-man pulseaudio-vala pulseaudio-dev"
23 CONFIG_FILES="/etc/pulse/client.conf /etc/pulse/daemon.conf \
24 /etc/pulse/default.pa"
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 grep -rsl 'uname -m' $src | xargs sed -i 's|uname -m|echo i686|'
31 ./bootstrap.sh &&
32 ./configure \
33 CC=gcc-83 \
34 CXX=g++-83 \
35 --sysconfdir=/etc \
36 --localstatedir=/var \
37 --disable-bluez4 \
38 --disable-systemd-daemon \
39 --disable-systemd-login \
40 --disable-systemd-journal \
41 --disable-oss-output \
42 --disable-oss-wrapper \
43 --disable-esound \
44 --disable-rpath \
45 --with-udev-rules-dir=/etc/udev/rules.d \
46 $CONFIGURE_ARGS &&
47 make &&
48 make -j1 install
49 }
51 # Rules to gen a SliTaz package suitable for Tazpkg.
52 genpkg_rules()
53 {
54 cook_copy_folders bin
55 cook_copy_files *.pa *.conf *.rules *.desktop *.so*
57 find $fs -name '*console-kit*' -delete
58 }