mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 12:07:15 +08:00
28 lines
674 B
Bash
28 lines
674 B
Bash
|
# Maintainer: abveritas@chakra-project.org
|
||
|
# Contributor: Mladen Pejakovic <pejakm@gmail.com>
|
||
|
|
||
|
pkgname=libxkbcommon
|
||
|
pkgver=0.2.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Keyboard handling library using XKB data"
|
||
|
arch=('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"
|
||
|
}
|