blob: 54896d3ecfd664cd378267da358b73558db0e5af (
plain)
1 # Description: X client library
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: xorg-libxcb xorg-xtrans
5
6 name=xorg-libx11
7 version=1.7.2
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libX11-$version.tar.bz2)
10
11 build() {
12 cd libX11-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18
19 # Conflict with xorg-xorgproto
20 rm $PKG/usr/include/X11/extensions/XKBgeom.h
21
22 rm -r $PKG/usr/share/doc
23 }
|