updated on Sun Jan 22 08:00:21 UTC 2012
[aur-mirror.git] / moc-svn / PKGBUILD
blob0e386308623469b78e0280007562be41e6b410c1
1 # Maintianer: Thomas Dziedzic < gostrc at gmail >
2 # Contributor: Cainã Costa <cainan.costa@gmail.com>
3 # Contributor: Paulo Matias <matiasΘarchlinux-br·org>
4 # Contributor: kotyz <kotyz.king@gmail.com>
6 pkgname=moc-svn
7 pkgver=2356
8 pkgrel=1
9 pkgdesc='A ncurses console audio player with support for the mp3, ogg, and wave formats'
10 url="http://moc.daper.net/"
11 arch=('i686' 'x86_64')
12 license=('GPL')
13 depends=('libmad' 'libid3tag' 'jack' 'curl' 'libsamplerate' 'libtool')
14 makedepends=('speex' 'ffmpeg' 'taglib' 'libmpcdec' 'wavpack' 'libmodplug' 'subversion' 'sidplay2')
15 optdepends=('speex: for using the speex plugin' 
16             'ffmpeg: for using the ffmpeg plugin'
17             'taglib: for using the musepack plugin' 
18             'libmpcdec: for using the musepack plugin' 
19             'wavpack: for using the wavpack plugin' 
20             'libmodplug: for using the modplug plugin'
21             'sidplay2: for playing c64 sid files')
22 conflicts=('moc')
23 provides=('moc')
24 options=('!libtool')
26 _svntrunk='svn://daper.net/moc/trunk'
27 _svnmod='moc'
29 build() {
30   if [ -d ${_svnmod} ]; then
31     (cd ${_svnmod} && svn up -r ${pkgver})
32   else
33     svn co ${_svntrunk} -r ${pkgver} ${_svnmod}
34   fi
36   msg 'SVN checkout done or server timeout'
37   msg 'Starting make...'
39   cd ${_svnmod}
40   
41   export CPPFLAGS="${CPPFLAGS} -I/usr/lib/oss/include"
43   ./autogen.sh
45   ./configure \
46     --prefix=/usr \
47     --without-rcc \
48     --without-aac \
49     --with-oss \
50     --with-alsa \
51     --with-jack \
52     --with-mp3 \
53     --with-sidplay2 \
54     --with-musepack \
55     --with-vorbis \
56     --with-flac \
57     --with-wavpack \
58     --with-sndfile \
59     --with-modplug \
60     --with-ffmpeg \
61     --with-speex \
62     --with-samplerate \
63     --with-curl \
64     --disable-debug
66   make
69 package() {
70   cd ${_svnmod}
72   make DESTDIR=${pkgdir} install