blob: 2d129245b63c2a4174a2d6aab6254a8828f461ec (
plain)
1 # Description: X Fixes extension client library
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: xorg-libx11-32
5
6 name=xorg-libxfixes-32
7 version=6.0.0
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libXfixes-$version.tar.bz2)
10
11 build() {
12 cd libXfixes-$version
13
14 ./configure \
15 --prefix=/usr \
16 --libdir=/usr/lib32
17
18 make
19 make DESTDIR=$PKG install
20
21 rm -r $PKG/usr/{include,share/man,share}
22 }
|