19 lines
390 B
Plaintext
19 lines
390 B
Plaintext
# Description: Print contents of X events
|
|
# URL: http://xorg.freedesktop.org
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: xorg-libx11
|
|
|
|
name=xorg-xev
|
|
version=1.2.1
|
|
release=1
|
|
source=(http://xorg.freedesktop.org/releases/individual/app/xev-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd xev-$version
|
|
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|