blob: 1b2073750d0998cf623827caf807d5bc133b88c5 (
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
24
25
26
|
#!/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
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|