mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-02 23:31:34 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
43 lines
955 B
Plaintext
43 lines
955 B
Plaintext
# 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
|
|
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
|
|
}
|
|
|
|
md5sums="20da0a2055a5a75962add8c6b44f60fa xinput_calibrator-0.7.5.tar.gz"
|