mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
31 lines
878 B
Bash
31 lines
878 B
Bash
# Part of the X.org group
|
|
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
# contributor: abveritas@chakra-project.org
|
|
|
|
pkgname=libxklavier
|
|
pkgver=5.4
|
|
pkgrel=1
|
|
pkgdesc="High-level API for X Keyboard Extension"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
depends=('libxkbfile' 'libxml2' 'glib2' 'xkeyboard-config' 'libxi' 'iso-codes')
|
|
makedepends=('gobject-introspection' 'intltool' 'gtk-doc' 'libxfixes')
|
|
options=('!emptydirs')
|
|
url="http://gswitchit.sourceforge.net"
|
|
source=("http://cgit.freedesktop.org/$pkgname/snapshot/$pkgname-$pkgver.zip")
|
|
|
|
md5sums=('2817e89676f25a836fe63ffdae69fca8')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./autogen.sh --prefix=/usr --with-xkb-bin-base=/usr/bin \
|
|
--with-xkb-base=/usr/share/X11/xkb --disable-static --disable-gtk-doc
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|