mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
31 lines
874 B
Bash
31 lines
874 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.3
|
|
_pkgver=5.3
|
|
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=('pkg-config')
|
|
options=('!libtool' '!emptydirs')
|
|
url="http://gswitchit.sourceforge.net"
|
|
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
|
|
}
|