blob: 09bda262ee739914b79e7218eadaa9d63cf1f4d8 (
plain)
1 # Description: A library to handle keyboard descriptions.
2 # URL: https://xkbcommon.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: xkeyboard-config
5
6 name=libxkbcommon
7 version=0.7.1
8 release=1
9 source=(https://xkbcommon.org/download/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --disable-docs
17
18 make
19 make DESTDIR=$PKG install
20 }
|