diff options
author | root <root@rshg054.dnsready.net> | 2013-03-04 00:03:49 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-03-04 00:03:49 -0800 |
commit | 3a8d026e8e859ff4c9aa813d5f1eb2afa5663e78 (patch) | |
tree | 48288f077555b04e1dd7cec1e637aeb94a322f0c /extra/libxkbcommon | |
parent | 945c9cd1e94fab87653f84598812dec707843d26 (diff) |
Mon Mar 4 00:03:48 PST 2013
Diffstat (limited to 'extra/libxkbcommon')
-rw-r--r-- | extra/libxkbcommon/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/libxkbcommon/PKGBUILD b/extra/libxkbcommon/PKGBUILD new file mode 100644 index 000000000..53ca992b1 --- /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) +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" +} |