blob: 9364b3cba6f7b560fe8a64e8bcdf4a0f1e89807c (
plain)
1 # Description: X shared memory fences
2 # URL: https://xorg.freedesktop.org
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: xorg-libxshmfence xorg-xorgproto-32
5
6 name=xorg-libxshmfence-32
7 version=1.3.2
8 release=1
9 source=(https://xorg.freedesktop.org/archive/individual/lib/libxshmfence-$version.tar.xz)
10
11 build() {
12 cd libxshmfence-$version
13
14 ./configure --prefix=/usr --libdir=/usr/lib32
15
16 make
17 make DESTDIR=$PKG install
18
19 rm -r $PKG/usr/include
20 }
|