summaryrefslogtreecommitdiff
path: root/community/xkeycaps/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/xkeycaps/PKGBUILD
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/xkeycaps/PKGBUILD')
-rw-r--r--community/xkeycaps/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/xkeycaps/PKGBUILD b/community/xkeycaps/PKGBUILD
new file mode 100644
index 000000000..8c9a1c9f5
--- /dev/null
+++ b/community/xkeycaps/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 20050 2010-07-02 09:22:39Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
+# Contributor: Patrick Leslie Polzer <leslie.polzer@gmx.net>
+
+pkgname=xkeycaps
+pkgver=2.46
+pkgrel=5
+arch=('i686' 'x86_64')
+pkgdesc="XKeyCaps is a graphical front-end to xmodmap."
+url="http://www.jwz.org/xkeycaps/"
+license=('custom')
+depends=('libxaw')
+makedepends=('imake')
+source=(http://www.jwz.org/$pkgname/$pkgname-$pkgver.tar.Z
+ license.txt)
+md5sums=('6792f828db6538f44f7696a8783b44ac'
+ '6d44b50641d2e7898aebcc668d204751')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ xmkmf || return 1
+ make MANPATH=/usr/share/man || return 1
+ make DESTDIR=$pkgdir install || return 1
+ make DESTDIR=$pkgdir MANPATH=/usr/share/man install.man || return 1
+ install -Dm644 ../license.txt \
+ $pkgdir/usr/share/licenses/$pkgname/license.txt
+}