21 lines
556 B
Plaintext
21 lines
556 B
Plaintext
|
# Description: X client library
|
||
|
# URL: http://xorg.freedesktop.org
|
||
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
||
|
# Depends on: xorg-libxcb-32 xorg-xf86bigfontproto-32 xorg-xextproto-32 xorg-xtrans-32 xorg-kbproto-32 xorg-inputproto-32 xorg-libx11
|
||
|
|
||
|
name=xorg-libx11-32
|
||
|
version=1.5.0
|
||
|
release=1
|
||
|
source=(http://xorg.freedesktop.org/releases/individual/lib/libX11-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd libX11-$version
|
||
|
|
||
|
./configure --prefix=/usr --mandir=/usr/man --libdir=/usr/lib32
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
rm -rf $PKG/usr/{include,man,share}
|
||
|
}
|