diff options
Diffstat (limited to 'x11-xhost')
| -rw-r--r-- | x11-xhost/MAKEPKG | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/x11-xhost/MAKEPKG b/x11-xhost/MAKEPKG new file mode 100644 index 0000000..69a2ff0 --- /dev/null +++ b/x11-xhost/MAKEPKG | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | #!/bin/mkpkg | ||
| 2 | # description: X server access control program | ||
| 3 | # url: https://xorg.freedesktop.org | ||
| 4 | |||
| 5 | name=x11-xhost | ||
| 6 | version=1.0.10 | ||
| 7 | release=1 | ||
| 8 | depends=(libxmu) | ||
| 9 | source=(https://www.x.org/releases/individual/app/xhost-$version.tar.xz) | ||
| 10 | |||
| 11 | build() { | ||
| 12 | cd xhost-$version | ||
| 13 | |||
| 14 | ./configure --prefix=/usr | ||
| 15 | make | ||
| 16 | make DESTDIR=$PKG install | ||
| 17 | } | ||
| 18 | |||
| 19 | signify() { | ||
| 20 | untrusted comment: public key | ||
| 21 | RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 | ||
| 22 | } | ||
| 23 | |||
| 24 | # vim: filetype=sh | ||