diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-11-11 15:45:55 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-11-11 15:47:03 +0200 |
commit | ec7a4f2536eef85b6d96936ad02eff011ed3eb68 (patch) | |
tree | 5ef607fbba8b5bbb6f57943384565c8b7ffe8e38 /community | |
parent | 49a24c0f73e353c3677f6b071c721e3566798e61 (diff) | |
download | aports-ec7a4f2536eef85b6d96936ad02eff011ed3eb68.tar.bz2 aports-ec7a4f2536eef85b6d96936ad02eff011ed3eb68.tar.xz |
community/xinput_calibrator: moved from unmaintained
Diffstat (limited to 'community')
-rw-r--r-- | community/xinput_calibrator/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/xinput_calibrator/APKBUILD b/community/xinput_calibrator/APKBUILD new file mode 100644 index 0000000000..c4828e1a49 --- /dev/null +++ b/community/xinput_calibrator/APKBUILD @@ -0,0 +1,33 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +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 + +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 +} + +md5sums="20da0a2055a5a75962add8c6b44f60fa xinput_calibrator-0.7.5.tar.gz" |