blob: 958e1b47ec805ba2da72f740b0c068ac5c62cf0a (
plain)
1 # Description: xorg proto recordproto
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: xorg-recordproto
5
6 name=xorg-recordproto-32
7 version=1.14.2
8 release=1
9 source=(http://xorg.freedesktop.org/releases/individual/proto/recordproto-$version.tar.bz2)
10
11 build() {
12 cd recordproto-$version
13
14 ./configure --prefix=/usr --libdir=/usr/lib32
15
16 make
17 make DESTDIR=$PKG install
18
19 rm $PKG/usr/share/doc/recordproto/record.xml
20 find $PKG/usr/share -type d -delete
21
22 rm -r $PKG/usr/include
23 }
|