blob: 27b80a893391a8f87e42a15fbcea11088d3be03d (
plain)
1 # Description: X shared memory fences
2 # URL: http://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.1
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 }
|