mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 19:37:14 +08:00
28 lines
673 B
Bash
28 lines
673 B
Bash
# Maintainer: abveritas@chakra-project.org
|
|
# Contributor: Mladen Pejakovic <pejakm@gmail.com>
|
|
|
|
pkgname=libxkbcommon
|
|
pkgver=0.3.2
|
|
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.xz")
|
|
md5sums=('935cf416354bf05210de2e389484f7e8')
|
|
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"
|
|
}
|