blob: 31cc1989faa33a6040c825ab5ccce27275849160 (
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
97
|
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=audacious-plugins
pkgver=3.4.1
pkgrel=0
pkgdesc="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"
update_config_sub || return 1
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
}
md5sums="74c9929190dee4b95db8633d4edb2afb audacious-plugins-3.4.1.tar.bz2"
sha256sums="ad86b31a69bd3305aa4e65bb9daea7429b51674b6ecd9b7ead36816074cf3b0a audacious-plugins-3.4.1.tar.bz2"
sha512sums="7919a87a7aac9cfa0820a96e2eb937c70ee4d7f1091cdb3c1097b9849551cadea820e5e51877092590a8d49534be83fbc5b3147c3a2a482d4d47a2d3fd079dd6 audacious-plugins-3.4.1.tar.bz2"
|