blob: 24bb1ce97891500a2016a957dd04ab7676716ada (
plain)
1 # Description: X client library
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
4 # Depends on: xorg-libxcb, xorg-xf86bigfontproto, xorg-xextproto, xorg-xtrans, xorg-kbproto, xorg-inputproto
5
6 name=xorg-libx11
7 version=1.3.4
8 release=1
9 source=(http://xorg.freedesktop.org/releases/individual/lib/libX11-$version.tar.bz2)
10
11 build() {
12 cd libX11-$version
13
14 ./configure --prefix=/usr --mandir=/usr/man
15
16 make
17 make DESTDIR=$PKG install
18
19 rm -rf $PKG/usr/share/doc
20 }
|