xorg/xkeyboard-config/Pkgfile

25 lines
629 B
Plaintext
Raw Normal View History

2007-01-23 19:40:13 +01:00
# Description: X keyboard configuration database
2018-07-10 22:52:38 +02:00
# URL: https://cgit.freedesktop.org/xkeyboard-config/
2012-07-14 10:15:51 +02:00
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
2019-08-25 15:41:05 +02:00
# Depends on: intltool xorg-xkbcomp
2007-01-23 19:40:13 +01:00
name=xkeyboard-config
2018-07-10 22:52:38 +02:00
version=2.24
2013-01-30 18:09:43 +01:00
release=1
source=(https://www.x.org/releases/individual/data/$name/$name-$version.tar.bz2)
2007-01-23 19:40:13 +01:00
build() {
2012-07-14 10:15:51 +02:00
cd $name-$version
2007-01-23 19:40:13 +01:00
./configure --prefix=/usr \
2013-10-06 12:08:54 +02:00
--disable-nls \
2007-01-23 19:40:13 +01:00
--with-xkb-base=/usr/share/X11/xkb \
--with-xkb-rules-symlink=xorg
make -j1
2007-01-23 19:40:13 +01:00
make DESTDIR=$PKG install
2007-07-18 18:57:24 +02:00
2013-05-29 13:54:35 +02:00
ln -s /var/lib/xkb $PKG/usr/share/X11/xkb/compiled
2012-07-14 10:15:51 +02:00
find $PKG -name README -delete
2007-01-23 19:40:13 +01:00
}