blob: 36690d3bff09fc8a240fcded3cbf2d9e54d028b6 (
plain)
1 # Description: X shared memory fences
2 # URL: https://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: xorg-util-macros xorg-xorgproto
5
6 name=xorg-libxshmfence
7 version=1.3.2
8 release=1
9 source=(https://www.x.org/archive/individual/lib/libxshmfence-$version.tar.xz)
10
11 build() {
12 cd libxshmfence-$version
13
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|