blob: 58d8d018a5e8328873fe393f69af15ffc138633d (
plain)
1 # Description: x server access control program
2 # URL: http://xorg.freedesktop.org
3 # Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4 # Depends on: xorg-libxmu
5
6 name=xorg-xhost
7 version=1.0.9
8 release=1
9 source=(https://www.x.org/releases/individual/app/xhost-$version.tar.xz)
10
11 build() {
12 cd xhost-$version
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|