Files
extra/tslib/PKGBUILD
2025-06-22 20:39:04 -05:00

27 lines
797 B
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=tslib
pkgver=1.22
pkgrel=1
pkgdesc="Touchscreen Access Library"
arch=(i686 x86_64)
url="https://github.com/kergoth/tslib"
license=(LGPL-2.1)
depends=(glibc)
source=("https://github.com/kergoth/tslib/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
sha512sums=('8f51fc5e37bb1babb89e8d6d5302c7d7b712820525bed0253f980028a78b343e4100065bbe0ecafb828a7edf3a9b77f96929ab79205d516ebbf6c25b32af0008'
'SKIP')
validpgpkeys=(F2082B880F9E423934686E3F500398DF5AB387D3) # Martin Kepplinger <martink@posteo.de>
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
}