blob: e633ff394a444c82b0e6da4ed431664a42947a1d (
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
41
42
|
# Maintainer: Daniel Menelkir <dmenelkir at gmail dot com>
# Contributor: Zach <mikezackles@gmail.com>
# Contributor: James An <james@jamesan.ca>
_pkgname=xf86-input-mtrack
pkgname="$_pkgname-git"
pkgver=0.5.1.r1.d38088b
pkgrel=1
pkgdesc="A multitouch X driver using the kernel MT protocol"
arch=('i686' 'x86_64')
url="http://github.com/p2rkw/$_pkgname"
license=('GPL')
depends=('mtdev' 'libxss')
makedepends=('xorg-server-devel' 'xorgproto' 'pixman')
provides=("$_pkgname")
conflicts=("$_pkgname" 'xf86-input-synaptics')
backup=('usr/share/X11/xorg.conf.d/10-mtrack.conf')
options=()
install=xf86-input-mtrack-git.install
source=(
"$_pkgname"::"git+https://github.com/p2rkw/$_pkgname.git"
10-mtrack.conf
)
md5sums=(
'SKIP'
ffb540330d92957e0da28af5a005136e
)
build() {
cd "$_pkgname"
autoreconf --install
./configure --prefix=/usr
make
}
package() {
cd "$_pkgname"
make DESTDIR="$pkgdir" install
install -Dm644 "$srcdir/10-mtrack.conf" "$pkgdir/usr/share/X11/xorg.conf.d/10-mtrack.conf"
}
|