30 lines
771 B
Bash
30 lines
771 B
Bash
# Template file for 'tslib'
|
|
pkgname=tslib
|
|
version=1.15
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="Touchscreen access library"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="GPL-2"
|
|
homepage="https://github.com/kergoth/tslib"
|
|
distfiles="https://github.com/kergoth/tslib/releases/download/${version}/${pkgname}-${version}.tar.xz"
|
|
checksum=7ce48807cab655076d71a1ceef3ed0ab8a25df98074981d4a8fd1477ee5f710c
|
|
|
|
tslib-tools_package() {
|
|
short_desc+=" - command line tools"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
}
|
|
}
|
|
|
|
tslib-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|