xorg/xkeyboard-config/Pkgfile

26 lines
608 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
2020-10-12 12:59:27 +02:00
# Depends on: intltool xorg-xkbcomp libxslt
2007-01-23 19:40:13 +01:00
name=xkeyboard-config
2020-10-12 12:59:27 +02:00
version=2.31
2020-04-06 15:46:21 +02:00
release=1
2020-10-12 12:59:27 +02:00
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
2020-10-12 12:59:27 +02:00
./configure \
--prefix=/usr \
--disable-nls \
--with-xkb-base=/usr/share/X11/xkb \
--with-xkb-rules-symlink=xorg
2007-01-23 19:40:13 +01:00
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
}