blob: db2c6126f5f34adb2ceb09295ca78aa9bd5db59a (
plain)
1 # Description: X11 Direct Graphics Access extension library
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: xorg-libxext-32 xorg-libxxf86dga
5
6 name=xorg-libxxf86dga-32
7 version=1.1.6
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libXxf86dga-$version.tar.xz)
10
11 build() {
12 cd libXxf86dga-$version
13
14 ./configure --prefix=/usr --libdir=/usr/lib32
15
16 make
17 make DESTDIR=$PKG install
18
19 rm -r $PKG/usr/{include,share/man}
20 }
|