blob: cf225542a248784dd226e97f6385d13e90b1dbac (
plain)
1 # Description: xorg driver xf86-input-microtouch
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
4 # Depends on: xorg-server
5
6 name=xorg-xf86-input-microtouch
7 version=1.2.0
8 release=1
9 source=(http://xorg.freedesktop.org/releases/individual/driver/xf86-input-microtouch-$version.tar.bz2)
10
11 build() {
12 cd xf86-input-microtouch-$version
13
14 ./configure --prefix=/usr --mandir=/usr/man
15
16 make
17 make DESTDIR=$PKG install
18 }
|