22 lines
553 B
Plaintext
22 lines
553 B
Plaintext
# Description: An abstraction library that comes between applications and audio visualisation plugins.
|
|
# URL: http://sourceforge.net/apps/mediawiki/libvisual/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: sten, nick dot steeves at shaw dot ca
|
|
|
|
name=libvisual
|
|
version=0.4.0
|
|
release=1
|
|
source=(http://downloads.sourceforge.net/project/$name/$name/$name-$version/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-extra-optimization
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share
|
|
}
|