36 lines
891 B
Bash
36 lines
891 B
Bash
# Template file for 'libevdev'
|
|
pkgname=libevdev
|
|
version=1.6.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-gcov"
|
|
hostmakedepends="python"
|
|
short_desc="Wrapper library for evdev devices"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="MIT"
|
|
homepage="https://www.freedesktop.org/wiki/Software/libevdev/"
|
|
distfiles="${FREEDESKTOP_SITE}/${pkgname}/${pkgname}-${version}.tar.xz"
|
|
checksum=f5005c865987d980cc1279b9ec6131b06a89fd9892f649f2a68262b8786ef814
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
libevdev-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}-${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|
|
libevdev-tools_package() {
|
|
short_desc+=" - tools"
|
|
depends="${sourcepkg}-${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
}
|
|
}
|