blob: 4361062b6c19c6ec624d53afd1bdff677c5ffd83 (
plain)
1 # Description: xorg lib libxkbfile
2 # URL: https://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: xorg-libx11
5
6 name=xorg-libxkbfile
7 version=1.1.2
8 release=1
9 source=(https://www.x.org/releases/individual/lib/libxkbfile-$version.tar.xz)
10
11 build() {
12 cd libxkbfile-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|