26 lines
539 B
Plaintext
26 lines
539 B
Plaintext
# Description: An OpenGL image compositing library.
|
|
# URL: http://www.freedesktop.org/Software/glitz
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: mesa3d-32 glitz
|
|
|
|
name=glitz-32
|
|
version=0.5.6
|
|
release=1
|
|
source=(http://cairographics.org/snapshots/glitz-$version.tar.gz
|
|
glitz-0.5.6-configure.patch.xz)
|
|
|
|
build() {
|
|
cd glitz-$version
|
|
|
|
xzcat $SRC/glitz-0.5.6-configure.patch.xz | patch -p 1
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/include
|
|
}
|