summaryrefslogtreecommitdiffstats
path: root/x11-xrdb/MAKEPKG
blob: 56eb4c580be3a2a6a99820c611d0a5a71a9a4aac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/mkpkg
# description: X server resource database utility
# url: https://xorg.freedesktop.org

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

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

# vim: filetype=sh