blob: 9efa1a49ac4b042f07cc7bd49e60cf86cff3b1b1 (
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.2
pkgrel=0
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="ac105d093eb819e6346abe19134a40e9 audacious-plugins-3.4.2.tar.bz2"
sha256sums="ea786588eee69b1b586ed7bd0ce715d9e79bf028120baee25f3542407a67d92a audacious-plugins-3.4.2.tar.bz2"
sha512sums="e3426807aa46b86bae969e8f6fcf53409a63ceec96ae28a47a7554b239885de3147720d2eac06d152bf4d64efdcade2367239634267561e70c296c2d31993f8b audacious-plugins-3.4.2.tar.bz2"
|