updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / audacious-lts-plugins / PKGBUILD~
blobf0a5cbe98a96337613182fee69ffa3a79da34598
1 # Contributor: Maloy <daniel.go.mon@gmail.com>
3 pkgname=audacious-lts-plugins
4 pkgver=2.5.4
5 pkgrel=1
6 realname=audacious-plugins
7 pkgdesc="Plugins for Audacious longterm release"
8 arch=('i686' 'x86_64')
9 url="http://audacious-media-player.org/"
10 license=('GPL')
11 depends=('audacious-lts') 
12 optdepends=('alsa-lib: Advanced Linux Sound Arch. output'
13             'pulseaudio: PulseAudio output'
14             'jack: Jack Audio Connection Kit output'
15             'lame: FileWriter MP3 output'
16             'libvorbis: Vorbis input, FileWriter Vorbis output'
17             'flac: FLAC input, FileWriter FLAC output'
18             'faad2: AAC input'
19             'ffmpeg: ffaudio input'
20             'fluidsynth: MIDI FluidSynth backend input'
21             'libcdio: CD Digital Audio input'
22             'libsidplay: Commodore 64 audio input'
23             'wavpack: WavPack input'
24             'libnotify: libnotify OSD'
25             'lirc-utils: LIRC'
26             'curl: AudioScrobbler Client'
27             'libmtp: Upload to MTP device'
28             'neon: neon-based http transport'
29             'libmms: libmms-based mms transport'
30             'libcue: CUE playlist format'
31 provides=("audacious-plugins=${pkgver}")
32 conflicts=('audacious-plugins')
33 replaces=('audacious-plugins')
34 options=('!libtool')
35 source=(http://distfiles.atheme.org/${realname}-${pkgver}.tar.gz)
36 md5sums=('93e8d13f2a17d047a4c24e1e5605fbac')
38 build() {
39   cd "$srcdir/$realname-$pkgver"
41   if [[ $CARCH = "i686" ]]; then
42     ./configure --prefix=/usr \
43       --enable-chardet --enable-amidiplug \
44       --disable-adplug --disable-projectm-1.0 --disable-sse2 || return 1
45   elif [[ $CARCH = "x86_64" ]]; then
46     ./configure --prefix=/usr \
47       --enable-chardet --enable-amidiplug \
48       --disable-adplug --disable-projectm-1.0 || return 1
49   fi
51   make || return 1
52   make DESTDIR="$pkgdir" install || return 1