mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-21 16:41:52 +01:00
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer: Daniel Sabogal <dsabogalcc@gmail.com>
|
|
pkgname=libinput
|
|
pkgver=1.8.1
|
|
pkgrel=1
|
|
pkgdesc="Library for handling input devices"
|
|
url="http://www.freedesktop.org/wiki/Software/libinput/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=""
|
|
makedepends="mtdev-dev eudev-dev libevdev-dev grep"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs"
|
|
options="!check"
|
|
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 \
|
|
--libexecdir=/usr/lib \
|
|
--mandir=/usr/share/man \
|
|
--with-udev-dir=/lib/udev \
|
|
--disable-documentation \
|
|
--disable-debug-gui \
|
|
--disable-libwacom \
|
|
--disable-tests
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" -C "$builddir" install
|
|
}
|
|
|
|
sha512sums="1566ccb7d1721ee2d16badc404896d31e3ac45fda71e2577db17141a507594f3827ed0a389bb537f946cb380d77feedef8e71df76ac89f8c11c44463df01ee4f libinput-1.8.1.tar.xz"
|