core/libvisual/PKGBUILD

23 lines
656 B
Bash
Raw Normal View History

2010-05-17 15:50:50 +08:00
# $Id: PKGBUILD 78070 2010-04-19 09:02:43Z dgriffiths $
2010-03-14 23:48:48 +08:00
# Maintainer: damir <damir@archlinux.org>
pkgname=libvisual
pkgver=0.4.0
2010-05-17 15:50:50 +08:00
pkgrel=3
2010-03-14 23:48:48 +08:00
pkgdesc="Abstraction library that comes between applications and audio visualisation plugins"
arch=("i686" "x86_64")
url="http://sourceforge.net/projects/libvisual/"
license=('LGPL')
depends=('glibc')
options=('!libtool')
2010-05-17 15:50:50 +08:00
source=("http://downloads.sourceforge.net/sourceforge/libvisual/libvisual-${pkgver}.tar.gz")
2010-03-14 23:48:48 +08:00
md5sums=('f4e78547c79ea8a8ad111cf8b85011bb')
build()
{
2010-05-17 15:50:50 +08:00
cd ${srcdir}/${pkgname}-${pkgver}
2010-03-14 23:48:48 +08:00
./configure --prefix=/usr || return 1
make || return 1
2010-05-17 15:50:50 +08:00
make DESTDIR=${pkgdir} install || return 1
2010-03-14 23:48:48 +08:00
}