summaryrefslogtreecommitdiffstats
path: root/libxtst/MAKEPKG
blob: 12666d5b449386b352757793fe200ef890937d37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/mkpkg
# description: X11 Testing extension library
# url: https://xorg.freedesktop.org

name=libxtst
version=1.2.5
release=1
depends=(libxi)
source=(https://www.x.org/releases/individual/lib/libXtst-$version.tar.xz)

build() {
    cd libXtst-$version
    
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG install
    
    rm -rf $PKG/usr/share/doc
}

# vim: filetype=sh