#Maintainer: Dimitris Tzemos pkgname=libxkbcommon pkgver=0.6.1 pkgrel=1dj source=("http://xkbcommon.org/download/$pkgname-$pkgver.tar.xz") docs=("INSTALL" "LICENCE" "NEWS" "PACKAGING" "README.md" "TODO") url="http://xkbcommon.org/" slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "libxkbcommon (library to handle keyboard descriptions)" "libxkbcommon is a keymap compiler and support library which processes" "a reduced subset of keymaps as defined by the XKB specification." "Primarily, a keymap is created from a set of" "Rules/Model/Layout/Variant/Options names, processed through an" "XKB ruleset, and compiled into a struct xkb_keymap, which is" "the base type for all xkbcommon operations." "libxkbcommon does not distribute a dataset itself, other than for" "testing purposes." ) build() { cd $SRC/$pkgname-$pkgver ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/man \ --docdir=/usr/doc/$pkgname-$pkgver \ --build=$arch-slackware-linux \ --disable-static make || return 1 make install-strip DESTDIR=$PKG || return 1 }