21 lines
475 B
Plaintext
21 lines
475 B
Plaintext
# Description: X shared memory fences
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: xorg-libxshmfence xorg-xorgproto-32
|
|
|
|
name=xorg-libxshmfence-32
|
|
version=1.3
|
|
release=1
|
|
source=(https://xorg.freedesktop.org/archive/individual/lib/libxshmfence-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd libxshmfence-$version
|
|
|
|
./configure --prefix=/usr --libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/include
|
|
}
|