summaryrefslogtreecommitdiff
path: root/testing/libwacom
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-26 03:11:33 +0000
committerroot <root@rshg054.dnsready.net>2012-07-26 03:11:33 +0000
commitc4c5143448e3be178c254e8f9f1ab24661dc3b20 (patch)
treeb37c17c6a52a96ac527adc8958976a94de73fdc5 /testing/libwacom
parent3083719ddb24bbb452e7ddba34bec067ea249056 (diff)
Thu Jul 26 03:11:33 UTC 2012
Diffstat (limited to 'testing/libwacom')
-rw-r--r--testing/libwacom/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/libwacom/PKGBUILD b/testing/libwacom/PKGBUILD
new file mode 100644
index 000000000..5080168da
--- /dev/null
+++ b/testing/libwacom/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 164040 2012-07-24 23:12:01Z eric $
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
+
+pkgname=libwacom
+pkgver=0.6
+pkgrel=1
+pkgdesc="Library to identify Wacom tablets and their features"
+arch=('x86_64' 'i686')
+url="http://sourceforge.net/apps/mediawiki/linuxwacom/index.php?title=Libwacom"
+license=('MIT')
+depends=('glib2' 'systemd-tools')
+options=('!libtool')
+source=(http://sourceforge.net/projects/linuxwacom/files/libwacom/$pkgname-$pkgver.tar.bz2)
+sha256sums=('7115690698edc87deec482f0b2526567b858475d2135b5f8ccc946e5e76ec01d')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --disable-static
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+ make check
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+ install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}