mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 00:02:17 +01:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer:
|
|
pkgname=libinput
|
|
pkgver=1.5.1
|
|
pkgrel=0
|
|
pkgdesc="Library for handling input devices"
|
|
url="http://www.freedesktop.org/wiki/Software/libinput/"
|
|
arch="all"
|
|
license="custom"
|
|
depends=""
|
|
makedepends="mtdev-dev eudev-dev libevdev-dev grep"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz"
|
|
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--disable-libwacom \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" \
|
|
-C "$builddir" install || return 1
|
|
}
|
|
|
|
md5sums="23a7bc2dad6ff701d2b82d2e5b218051 libinput-1.5.1.tar.xz"
|
|
sha256sums="d4f63933b0967bd691735af5e3919e2d29c2121d4e05867cc4e10ff3ae8e2dd8 libinput-1.5.1.tar.xz"
|
|
sha512sums="13cf61ec3cc67687ee4cbe6fffd1cec722d4c0b328f5fddc9e0c655af1cdc5030b3cebeb32374917df2bd14eeee74e2be9ea97af52d006e08f447932bf525e9a libinput-1.5.1.tar.xz"
|