diff options
author | Britney Fransen <brfransen@gmail.com> | 2011-08-07 05:44:00 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2011-08-07 05:44:00 (GMT) |
commit | 2747bb3963f6a0e237e540301311f430f1876346 (patch) | |
tree | a31cb47f0e4e13370f4e52f28fdc564746047f26 /abs/core/libvisual | |
parent | f6cb11445db39ac6c33047426893107a54520bb9 (diff) | |
parent | f75cfa40ac713fbc58294c72d98aa77511e01524 (diff) | |
download | linhes_pkgbuild-2747bb3963f6a0e237e540301311f430f1876346.zip linhes_pkgbuild-2747bb3963f6a0e237e540301311f430f1876346.tar.gz linhes_pkgbuild-2747bb3963f6a0e237e540301311f430f1876346.tar.bz2 |
Merge branch 'testing' of knoppmyth.net:linhes_pkgbuild into testing
Diffstat (limited to 'abs/core/libvisual')
-rw-r--r-- | abs/core/libvisual/PKGBUILD | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/abs/core/libvisual/PKGBUILD b/abs/core/libvisual/PKGBUILD index eb01e19..11b5667 100644 --- a/abs/core/libvisual/PKGBUILD +++ b/abs/core/libvisual/PKGBUILD @@ -1,21 +1,22 @@ -# $Id: PKGBUILD 8760 2008-08-16 05:23:46Z eric $ +# $Id: PKGBUILD 78070 2010-04-19 09:02:43Z dgriffiths $ # Maintainer: damir <damir@archlinux.org> pkgname=libvisual pkgver=0.4.0 -pkgrel=1 -pkgdesc="abstraction library that comes between applications and audio visualisation plugins" +pkgrel=3 +pkgdesc="Abstraction library that comes between applications and audio visualisation plugins" arch=("i686" "x86_64") -url="http://localhost.nl/~synap/libvisual/" +url="http://sourceforge.net/projects/libvisual/" +license=('LGPL') depends=('glibc') options=('!libtool') -source=("http://downloads.sourceforge.net/sourceforge/libvisual/libvisual-$pkgver.tar.gz") +source=("http://downloads.sourceforge.net/sourceforge/libvisual/libvisual-${pkgver}.tar.gz") md5sums=('f4e78547c79ea8a8ad111cf8b85011bb') build() { - cd $startdir/src/$pkgname-$pkgver - ./configure --prefix=/usr + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr || return 1 make || return 1 - make DESTDIR=$startdir/pkg install + make DESTDIR=${pkgdir} install || return 1 } |