22 lines
432 B
Plaintext
22 lines
432 B
Plaintext
# Description: xorg proto kbproto
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: xorg-util-macros
|
|
|
|
name=xorg-kbproto
|
|
version=1.0.6
|
|
release=1
|
|
source=(http://xorg.freedesktop.org/releases/individual/proto/kbproto-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd kbproto-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
rmdir $PKG/usr/share
|
|
}
|