24 lines
530 B
Plaintext
24 lines
530 B
Plaintext
|
# Description: xorg proto recordproto
|
||
|
# URL: http://xorg.freedesktop.org
|
||
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
||
|
# Depends on: xorg-recordproto
|
||
|
|
||
|
name=xorg-recordproto-32
|
||
|
version=1.14.2
|
||
|
release=1
|
||
|
source=(http://xorg.freedesktop.org/releases/individual/proto/recordproto-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd recordproto-$version
|
||
|
|
||
|
./configure --prefix=/usr --libdir=/usr/lib32
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
rm $PKG/usr/share/doc/recordproto/record.xml
|
||
|
find $PKG/usr/share -type d -delete
|
||
|
|
||
|
rm -r $PKG/usr/include
|
||
|
}
|