summaryrefslogtreecommitdiff
path: root/extra/libxkbcommon
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-03-04 09:51:11 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2013-03-04 09:51:11 +0100
commit6b67b8c583b321bc955bc8efd24befe40d15e9fc (patch)
tree61148cd550443788030ce27e3d7bee9fb9daf57e /extra/libxkbcommon
parent8ba6ee51e836f2a5b78c7d6ca0096ddb5f847833 (diff)
parent3a8d026e8e859ff4c9aa813d5f1eb2afa5663e78 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/erlang-sdl/PKGBUILD community/nautilus-sound-converter/PKGBUILD community/shapelib/PKGBUILD core/libarchive/PKGBUILD extra/claws-mail-extra-plugins/PKGBUILD extra/evince/PKGBUILD extra/gtk3/PKGBUILD extra/gvfs/PKGBUILD extra/libgxps/PKGBUILD extra/mkvtoolnix/PKGBUILD extra/qt5/PKGBUILD libre/gstreamer0.10-bad-libre/PKGBUILD libre/kernel26-libre-lts/PKGBUILD
Diffstat (limited to 'extra/libxkbcommon')
-rw-r--r--extra/libxkbcommon/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/libxkbcommon/PKGBUILD b/extra/libxkbcommon/PKGBUILD
new file mode 100644
index 000000000..b9d071011
--- /dev/null
+++ b/extra/libxkbcommon/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 179075 2013-03-03 00:51:04Z heftig $
+# Maintainer: Daniel Micay <danielmicay@gmail.com>
+# Contributor: Mladen Pejakovic <pejakm@gmail.com>
+
+pkgname=libxkbcommon
+pkgver=0.2.0
+pkgrel=3
+pkgdesc="Keyboard handling library using XKB data"
+arch=(i686 x86_64 mips64el)
+url="http://xkbcommon.org/"
+license=('custom')
+depends=(glibc)
+makedepends=(doxygen xorg-util-macros)
+source=("http://xkbcommon.org/download/$pkgname-$pkgver.tar.bz2")
+md5sums=('2be3d4a255d02c7d46fc6a9486f21f6a')
+options=('!libtool')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}