mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-14 08:39:04 +08:00
26 lines
832 B
Bash
26 lines
832 B
Bash
# $Id: PKGBUILD 85148 2010-07-09 22:08:24Z schiv $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: M Rawash <mrawash@gmail.com>
|
|
|
|
pkgname=xf86-input-wacom
|
|
pkgver=0.10.7
|
|
pkgrel=1
|
|
pkgdesc="X.Org Wacom tablet driver"
|
|
arch=('i686' 'x86_64')
|
|
url="http://linuxwacom.sourceforge.net/"
|
|
license=('GPL')
|
|
backup=('etc/X11/xorg.conf.d/50-wacom.conf')
|
|
depends=('libxi')
|
|
makedepends=('pkgconfig' 'xorg-server>=1.7.6' 'xorg-util-macros')
|
|
conflicts=('xorg-server<1.7.6')
|
|
options=(!libtool)
|
|
source=(http://downloads.sourceforge.net/project/linuxwacom/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('6892c96853f164b5a40651ce64e2491a')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --with-xorg-conf-dir=/etc/X11/xorg.conf.d || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|