mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-09 22:04:21 +02:00
34 lines
754 B
Text
34 lines
754 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=xkbcomp
|
|
pkgver=1.4.7
|
|
pkgrel=0
|
|
pkgdesc="XKBD keymap compiler"
|
|
url="https://xorg.freedesktop.org"
|
|
arch="all"
|
|
license="MIT"
|
|
makedepends="libx11-dev libxkbfile-dev util-macros"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="https://www.x.org/releases/individual/app/xkbcomp-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
6f468dce9d2499ab1022f4288d46f66af149dac0a161fb5b9dc0c262bc70c2c3d254db2c6fb5df1e2793c822e2d55c6da5fd037ce523a555b7c3de23e35c49ef xkbcomp-1.4.7.tar.xz
|
|
"
|