summaryrefslogblamecommitdiffstats
path: root/x11-xprop/MAKEPKG
blob: e3c9b7e6f591b8d97662b271d5e768d02ad8fd3f (plain) (tree)



















                                                                        
#!/bin/mkpkg
# *** OpenTUX ***
# description: Property displayer for X
# url: https://xorg.freedesktop.org

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

build() {
    cd xprop-$version
    
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG install
}

# vim: filetype=sh