diff options
Diffstat (limited to 'community/xmms-imms/PKGBUILD')
-rw-r--r-- | community/xmms-imms/PKGBUILD | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/community/xmms-imms/PKGBUILD b/community/xmms-imms/PKGBUILD index fd6a5cb94..842b6b78e 100644 --- a/community/xmms-imms/PKGBUILD +++ b/community/xmms-imms/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 83686 2013-02-04 11:06:53Z spupykin $ +# $Id: PKGBUILD 110078 2014-04-23 17:30:12Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Kritoke <kritoke@nospam.gmail.com> # Contributor: Kritoke <kritoke@nospam.gmail.com> pkgname=xmms-imms -pkgver=3.1.0_rc10 +pkgver=301 pkgrel=1 pkgdesc="An intelligent playlist plug-in for XMMS that tracks your listening patterns and dynamically adapts to your taste." arch=(i686 x86_64) @@ -12,20 +12,20 @@ license=("GPL") url="http://imms.luminal.org/" depends=('xmms' 'pcre' 'sqlite' 'taglib' 'glib2' 'sox' 'torch' 'libxss' 'fftw') replaces=('imms') -source=(http://imms.googlecode.com/files/imms-${pkgver/_/-}.tar.bz2) -md5sums=('61302249e9638779b3241987ab62676d') +source=(http://imms.googlecode.com/files/imms-r${pkgver/_/-}.tar.bz2) +md5sums=('8b3dfac2ce1ae988a7c2fbc47026cc73') build() { - cd $srcdir/imms-${pkgver/_/-} - - if [ $NOEXTRACT -ne 1 ]; then - autoheader - aclocal - autoconf - CXXFLAGS="$CXXFLAGS -DDEBUG=0" ./configure --prefix=/usr --disable-immsremote - fi + cd $srcdir/imms-r${pkgver/_/-} + autoheader + aclocal + autoconf + ./configure --prefix=/usr --disable-immsremote + make LDFLAGS="-L. -lXss -lXext -lX11 -lsqlite3 -lz -lpcre -ltag -L/usr/X11R6/lib /usr/lib/libtorch.so.3" +} - make +package() { + cd $srcdir/imms-r${pkgver/_/-} mkdir -p $pkgdir/usr/bin make prefix=$pkgdir/usr DESTDIR=$pkgdir/usr/lib/xmms/General \ BMPDESTDIR=$pkgdir/usr/lib/bmp/General install |