blob: 31aeea661e5953028e749688643e2d61389e167a (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=audacious-plugins
pkgver=3.4.3
pkgrel=2
pkgdesc="A playlist-oriented media player with multiple interfaces (plugins)"
url="http://audacious-media-player.org/"
arch="all"
license="ISC"
depends="audacious"
install_if="audacious"
_want_ffmpeg="ffmpeg-dev"
makedepends="libmowgli-dev
libguess-dev
gtk+-dev
dbus-glib-dev
audacious-dev>=${pkgver%.*}
libxml2-dev
mpg123-dev
libcdio-dev
libcdio-paranoia-dev
libcddb-dev
libxcomposite-dev
libsamplerate-dev
libcue-dev
libmms-dev
libsndfile-dev
libnotify-dev
libogg-dev
libvorbis-dev
$_want_ffmpeg
alsa-lib-dev
faad2-dev
neon-dev
curl-dev
wavpack-dev
lame-dev
flac-dev
sdl-dev
automake
autoconf"
install=
subpackages="$pkgname-lang"
source="http://distfiles.audacious-media-player.org/$pkgname-$pkgver.tar.bz2"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
for i in $source; do
case $i in
*.patch)
msg "Applying $i..."
patch -s -p1 -N -i "$srcdir"/$i || return 1
;;
esac
done
msg "Rebuilding configure..."
aclocal -I m4 && autoheader && autoconf || return 1
# workaround bug in busybox
sed -e "/touch/s/0001010000/200001010000/g" \
-i configure
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
}
md5sums="a52e1ec2f37e9269e26ee67b41153d73 audacious-plugins-3.4.3.tar.bz2"
sha256sums="bee67a8f8e84d855d4008367a61e662f1e6d15db5accda587c4025ed12462803 audacious-plugins-3.4.3.tar.bz2"
sha512sums="b378ebd4ea6a21fdda1d126219aeccd472ef057004b784873e5a442b086b403b18717b872cd30800bd4f00011704189eb97c9efd517cf2163206183ddca61801 audacious-plugins-3.4.3.tar.bz2"
|