blob: 73e01e413ceb0a57d9506025288bfacb7b31f806 (
plain)
1 # Description: X Input 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-xproto-32 xorg-libx11-32 xorg-xextproto-32 xorg-libxext-32 xorg-inputproto xorg-libxi xorg-libxfixes-32
5
6 name=xorg-libxi-32
7 version=1.7.8
8 release=1
9 source=(http://xorg.freedesktop.org/releases/individual/lib/libXi-$version.tar.bz2)
10
11 build() {
12 cd libXi-$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,share}
20 }
|