forked from ports/compat-32
31 lines
808 B
Plaintext
31 lines
808 B
Plaintext
# Description: An abstraction library that comes between applications and audio visualisation plugins.
|
|
# URL: http://libvisual.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: autoconf-archive libsdl-32 libvisual
|
|
|
|
name=libvisual-32
|
|
version=0.4.2
|
|
release=1
|
|
source=(https://github.com/Libvisual/libvisual/releases/download/libvisual-$version/libvisual-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd libvisual-$version
|
|
|
|
export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
|
|
sed -i 's/sdl-config/sdl-config-32/g' configure.ac
|
|
autoreconf -vfi
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--enable-extra-optimization \
|
|
--disable-examples \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share
|
|
|
|
rm -rf $PKG/{etc,var} $PKG/usr/{bin,etc,include,man,sbin,share}
|
|
}
|