desktop/libxklavier/PKGBUILD

31 lines
874 B
Bash
Raw Normal View History

2013-12-20 21:33:03 +08:00
# Part of the X.org group
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
# contributor: abveritas@chakra-project.org
pkgname=libxklavier
2013-12-20 21:33:03 +08:00
pkgver=5.3
_pkgver=5.3
pkgrel=1
pkgdesc="High-level API for X Keyboard Extension"
2013-12-20 21:33:03 +08:00
arch=('x86_64')
license=('LGPL')
depends=('libxkbfile' 'libxml2' 'glib2' 'xkeyboard-config' 'libxi' 'iso-codes')
makedepends=('pkg-config')
options=('!libtool' '!emptydirs')
url="http://gswitchit.sourceforge.net"
2013-12-20 21:33:03 +08:00
source=("http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz")
sha256sums=('ebec3bc54b5652838502b96223152fb1cd8fcb14ace5cb02d718fc3276bbd404')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--with-xkb-base=/usr/share/X11/xkb --disable-static
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}