diff options
author | root <root@rshg054.dnsready.net> | 2013-04-02 00:05:43 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-04-02 00:05:43 -0700 |
commit | c9738c6a1d438f30dfa7363aa847343754f953ac (patch) | |
tree | 4922cc79f6695dbe35bdc4ce2c44a7a8d93cf053 /extra/libxkbcommon | |
parent | c623429f33c434cb1cb11974d9e71f48dd5a881f (diff) |
Tue Apr 2 00:05:43 PDT 2013
Diffstat (limited to 'extra/libxkbcommon')
-rw-r--r-- | extra/libxkbcommon/PKGBUILD | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/extra/libxkbcommon/PKGBUILD b/extra/libxkbcommon/PKGBUILD index 53ca992b1..ae4d1bdff 100644 --- a/extra/libxkbcommon/PKGBUILD +++ b/extra/libxkbcommon/PKGBUILD @@ -1,28 +1,29 @@ -# $Id: PKGBUILD 179075 2013-03-03 00:51:04Z heftig $ -# Maintainer: Daniel Micay <danielmicay@gmail.com> +# $Id: PKGBUILD 181161 2013-04-01 20:10:49Z heftig $ +# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> +# Contributor: Daniel Micay <danielmicay@gmail.com> # Contributor: Mladen Pejakovic <pejakm@gmail.com> pkgname=libxkbcommon -pkgver=0.2.0 -pkgrel=3 +pkgver=0.3.0 +pkgrel=1 pkgdesc="Keyboard handling library using XKB data" arch=(i686 x86_64) url="http://xkbcommon.org/" -license=('custom') -depends=(glibc) +license=(custom) +depends=(xkeyboard-config) makedepends=(doxygen xorg-util-macros) -source=("http://xkbcommon.org/download/$pkgname-$pkgver.tar.bz2") -md5sums=('2be3d4a255d02c7d46fc6a9486f21f6a') options=('!libtool') +source=("http://xkbcommon.org/download/$pkgname-$pkgver.tar.xz") +md5sums=('22a046100738f99b4cc0297aa210f4e4') build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr + cd $pkgname-$pkgver + ./configure --prefix=/usr --disable-static make } package() { - cd "$srcdir/$pkgname-$pkgver" + cd $pkgname-$pkgver make DESTDIR="$pkgdir" install - install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } |