blob: 5a0a89051e4244707e44241a0f27e772406f4ac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xf86-input-synaptics
pkgver=1.7.3
pkgrel=1
pkgdesc="X.org synaptics input driver"
url="http://xorg.freedesktop.org/"
arch="all"
license="custom"
subpackages="$pkgname-doc"
depends=
makedepends="pkgconfig libxkbfile-dev xorg-server-dev libxi-dev libxrandr-dev
mtdev-dev libxtst-dev"
source="http://xorg.freedesktop.org/releases/individual/driver/$pkgname-$pkgver.tar.bz2"
_builddir="$srcdir/$pkgname-$pkgver"
prepare() {
cd "$_builddir"
}
build() {
cd "$_builddir"
export LDFLAGS="$LDFLAGS -Wl,-z,lazy"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/xorg/modules/input/*.la || return 1
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
}
md5sums="74c83e6cb53a0e15bcbe7cc73d63d2a1 xf86-input-synaptics-1.7.3.tar.bz2"
sha256sums="8b2a972043961195d056b84346317ec42bfa029095c9ee7aaf6deceba12e32d5 xf86-input-synaptics-1.7.3.tar.bz2"
sha512sums="e41134d7a9468d6ea1ed9a893c481df39c8de3070cfcd5562c07720bfe78b7f5a5c3ad5dfce6fe560fdea83c63e0f04741d2fb1caebdb959959a5caf0275036d xf86-input-synaptics-1.7.3.tar.bz2"
|