mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
675 B
Bash
23 lines
675 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||
|
|
||
|
pkgname=libsynaptics
|
||
|
pkgver=0.14.6c
|
||
|
pkgrel=3
|
||
|
pkgdesc="Library for accessing synaptics touchpads"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://qsynaptics.sourceforge.net"
|
||
|
license=('GPL')
|
||
|
depends=('gcc-libs')
|
||
|
options=('!libtool')
|
||
|
source=(http://qsynaptics.sourceforge.net/$pkgname-$pkgver.tar.bz2 libsynaptics-gcc433.patch)
|
||
|
md5sums=('fedf8b31171d288954ff2e83b251de44' '5e1df34fe8c2480b803a8ea6520bdda8')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
patch -Np0 -i ../libsynaptics-gcc433.patch || return 1
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install
|
||
|
}
|