summaryrefslogtreecommitdiffstats
path: root/extra/pulseaudio/Pkgfile
blob: 02dd1b119f5fe78ab3d73a10c34918018f313532 (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
# 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
# Run on: consolekit,alsa-lib,gconf,libcap,liboil,policykit,libsamplerate,libsndfile,speex,libvorbis

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

build() {
	unset MAKEFLAGS
        cd $name-$version
        ./configure --prefix=/usr \
        --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
}
~