summaryrefslogtreecommitdiff
path: root/testing/xfce4-xkb-plugin/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/xfce4-xkb-plugin/PKGBUILD')
-rw-r--r--testing/xfce4-xkb-plugin/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/xfce4-xkb-plugin/PKGBUILD b/testing/xfce4-xkb-plugin/PKGBUILD
new file mode 100644
index 000000000..8e0c63ed4
--- /dev/null
+++ b/testing/xfce4-xkb-plugin/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 157717 2012-04-29 02:55:39Z foutrelis $
+# Maintainer: AndyRTR <andyrtr@archlinux.org>
+# Contributor: Tobias Kieslich <tobias (at) archlinux.org>
+
+pkgname=xfce4-xkb-plugin
+pkgver=0.5.4.3
+pkgrel=2
+pkgdesc="Plugin to switch keyboard layouts for the Xfce4 panel"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://goodies.xfce.org/projects/panel-plugins/xfce4-xkb-plugin"
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libxklavier>=5.0' 'librsvg')
+makedepends=('intltool')
+options=('!libtool')
+source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/${pkgver%.*.*}/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('4dc42f96dc16a3bd78f86454ea3a931464e18497')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib \
+ --localstatedir=/var \
+ --disable-static \
+ --disable-debug
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}