forked from ports/compat-32
23 lines
477 B
Plaintext
23 lines
477 B
Plaintext
# Description: xorg proto inputproto
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: xorg-inputproto
|
|
|
|
name=xorg-inputproto-32
|
|
version=2.3
|
|
release=2
|
|
source=(http://xorg.freedesktop.org/releases/individual/proto/inputproto-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd inputproto-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--without-asciidoc
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/include
|
|
}
|