summaryrefslogtreecommitdiffstats
path: root/x11-xset/MAKEPKG
blob: 3aed8788b3c912c397b3df8a64eaa3aa7488997e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/mkpkg
# *** OpenTUX ***
# description: User preference utility for X
# url: https://xorg.freedesktop.org

name=x11-xset
version=1.2.5
release=1
depends=(libxmu)
source=(https://www.x.org/releases/individual/app/xset-$version.tar.xz)

build() {
    cd xset-$version
    
    ./configure \
        --prefix=/usr \
        --without-xf86misc
    
    make
    make DESTDIR=$PKG install
}

# vim: filetype=sh