From e4b6796d6a9b8fc66f9bc1f2ff4bd8664c9fba56 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 24 Sep 2012 12:06:49 +0000 Subject: testing/xinput_calibrator: new aport A generic touchscreen calibration program for X.Org http://www.freedesktop.org/wiki/Software/xinput_calibrator --- testing/xinput_calibrator/APKBUILD | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 testing/xinput_calibrator/APKBUILD (limited to 'testing/xinput_calibrator') diff --git a/testing/xinput_calibrator/APKBUILD b/testing/xinput_calibrator/APKBUILD new file mode 100644 index 000000000..8315b2f69 --- /dev/null +++ b/testing/xinput_calibrator/APKBUILD @@ -0,0 +1,43 @@ +# Maintainer: Natanael Copa +pkgname=xinput_calibrator +pkgver=0.7.5 +pkgrel=0 +pkgdesc="A generic touchscreen calibration program for X.Org" +url="http://www.freedesktop.org/wiki/Software/xinput_calibrator" +arch="all" +license="MIT" +depends="" +depends_dev="" +makedepends="libxtst-dev libxrandr-dev" +install="" +subpackages="$pkgname-doc" +source="http://github.com/downloads/tias/xinput_calibrator/xinput_calibrator-$pkgver.tar.gz" + +_builddir="$srcdir"/xinput_calibrator-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --with-gui=x11 \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="20da0a2055a5a75962add8c6b44f60fa xinput_calibrator-0.7.5.tar.gz" -- cgit v1.2.3