blob: 27ed0ece7203f8b17421718680079fa0144a2fb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
MAKEDEPS="make"
DEPS="libevdev xorg-server"
DESC="Synaptics driver for notebook touchpads"
PKG_VER=1.9.1
SOURCE=https://www.x.org/pub/individual/driver/xf86-input-synaptics-$PKG_VER.tar.bz2
build () {
./configure $XORG_CONFIG
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|