summaryrefslogtreecommitdiffstats
path: root/extra/pulseaudio/Pkgfile
blob: 0eee3152eae24f6969cc6a1cde81691f22a73cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Description: serveur de sons pour systèmes POSIX. Serveur de proximité pour les applications sonores.
# URL: http://www.pulseaudio.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: consolekit,alsa-lib,gconf,libcap,liboil,policykit,libsamplerate,libsndfile,speex,libvorbis,xorg-libxtst,xorg-libsm,xorg-xcb-util
# Run on: consolekit,alsa-lib,gconf,libcap,liboil,policykit,libsamplerate,libsndfile,speex,libvorbis

name=pulseaudio
version=0.9.23
release=3
source=(http://freedesktop.org/software/$name/releases/$name-$version.tar.gz
	asound.conf)

build() {
	unset MAKEFLAGS
        cd $name-$version
        ./configure --prefix=/usr \
	--sysconfdir=/etc \
        --disable-static \
        --disable-avahi \
        --disable-jack \
        --disable-asyncns \
        --disable-tcpwrap \
        --disable-lirc \
        --disable-bluez \
        --disable-hal \
        --disable-ltdl-install \
        --disable-rpath \
        --disable-default-build-tests
        make
        make DESTDIR=$PKG install

	install -Dm644 ../asound.conf $PKG/etc/asound.conf
	rm $PKG/etc/dbus-1/system.d/$name-system.conf
}