blob: 98c7c9289adf545bf3ebd63809cb43f802f556c5 (
plain)
1 # Description: A library providing high-level API for X Keyboard Extension known as XKB
2 # URL: http://freedesktop.org/Software/LibXklavier
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: xorg-libx11 iso-codes gobject-introspection
5
6 name=libxklavier
7 version=5.4
8 release=1
9 source=(https://people.freedesktop.org/~svu/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 sed -i -e '/^SUBDIRS/s/ doc//' Makefile.in
14 ./configure --prefix=/usr \
15 --disable-static \
16 --disable-nls
17 make
18 make DESTDIR=$PKG install
19 }
|