2012-11-21 11:12:43 -06:00
|
|
|
# Description: An abstraction library that comes between applications and audio visualisation plugins.
|
2022-12-09 22:47:54 +00:00
|
|
|
# URL: http://libvisual.org/
|
2013-02-02 01:54:23 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2023-03-31 17:28:32 +02:00
|
|
|
# Depends on: autoconf-archive libsdl-32 libvisual
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
name=libvisual-32
|
2023-03-31 17:28:32 +02:00
|
|
|
version=0.4.2
|
2012-11-21 11:12:43 -06:00
|
|
|
release=1
|
2022-12-09 22:47:54 +00:00
|
|
|
source=(https://github.com/Libvisual/libvisual/releases/download/libvisual-$version/libvisual-$version.tar.bz2)
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd libvisual-$version
|
|
|
|
|
2022-12-09 22:47:54 +00:00
|
|
|
export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
|
|
|
|
sed -i 's/sdl-config/sdl-config-32/g' configure.ac
|
|
|
|
autoreconf -vfi
|
|
|
|
|
2012-11-21 11:12:43 -06:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib32 \
|
2023-03-31 17:28:32 +02:00
|
|
|
--enable-extra-optimization \
|
|
|
|
--disable-examples \
|
|
|
|
--disable-nls
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share
|
|
|
|
|
|
|
|
rm -rf $PKG/{etc,var} $PKG/usr/{bin,etc,include,man,sbin,share}
|
|
|
|
}
|