blob: 500f1c83390245a5a4b626365287f87b51fde6c1 (
plain)
1 # Description: xorg proto inputproto
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: xorg-inputproto
5
6 name=xorg-inputproto-32
7 version=2.3.2
8 release=1
9 source=(http://xorg.freedesktop.org/releases/individual/proto/inputproto-$version.tar.bz2)
10
11 build() {
12 cd inputproto-$version
13
14 ./configure --prefix=/usr \
15 --libdir=/usr/lib32 \
16 --without-asciidoc
17
18 make
19 make DESTDIR=$PKG install
20
21 rm -r $PKG/usr/include
22 }
|