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.3
|
|
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="5df5e7f1a693bf74bbab0c804d1b710b libinput-1.5.3.tar.xz"
|
|
sha256sums="91206c523b4e7aeecf296d0b94276c61bea90b9260d198c8ee3a91eced10a6e3 libinput-1.5.3.tar.xz"
|
|
sha512sums="4d5ca9189275d6f2ed40ff85903bf10ae3b15ceaea43a3565384b6495a9b1764fed1f95c667dfa9e96170b3709a9c8dc1d1bad88cb82d0de69045b7c5f0bc7e6 libinput-1.5.3.tar.xz"
|