blob: f869a0238381faaee0b6b3beaecec9d16ea68c92 (
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
|
# Contributor: ScrumpyJack <scrumpyjack@st.ilet.to>
# Maintainer: ScrumpyJack <scrumpyjack@st.ilet.to>
pkgname=moc
pkgver=2.5.1
pkgrel=0
pkgdesc="MOC is a console audio player"
url="http://moc.daper.net/"
arch="all"
license="GPL"
depends=""
depends_dev=""
makedepends="curl-dev libtool file ffmpeg-dev speex-dev alsa-lib-dev
libmodplug-dev faad2-dev jack-dev libmad-dev ncurses-dev"
install=""
subpackages="$pkgname-doc"
source="http://ftp.daper.net/pub/soft/moc/stable/moc-${pkgver}.tar.bz2"
_builddir="${srcdir}/${pkgname}-${pkgver}"
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
update_config_sub || return 1
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--without-rcc \
--with-oss \
--with-alsa \
--with-jack \
--with-aac \
--with-mp3 \
--with-musepack \
--with-vorbis \
--with-flac \
--with-wavpack \
--with-sndfile \
--with-modplug \
--with-ffmpeg \
--with-speex \
--with-samplerate \
--with-curl \
--disable-cache \
--disable-debug \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="${pkgdir}" install
}
md5sums="ea9c8edb8b7a64a0b93d540293d3ff74 moc-2.5.1.tar.bz2"
sha256sums="1b419c75a92a85ff4ee7670c65d660c86fef32032c65e89e868b988f80fac4f2 moc-2.5.1.tar.bz2"
sha512sums="9e22ce72a96cb6e5e948af509c8b7528155fe50e8b5130d78363b6cd57f731f8847bd770cd2c2363a7b9ed70a16b55c7fc1672b2b981ae207c1abd35c2acc301 moc-2.5.1.tar.bz2"
|