blob: a0bcd33b8cccdee2dbd2059fcc1d6fd5580963c1 (
plain)
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
27
28
29
|
#!/bin/mkpkg
# description: X transport library
# url: https://xorg.freedesktop.org
name=xtrans
version=1.6.0
release=1
source=(https://www.x.org/releases/individual/lib/xtrans-$version.tar.xz)
sha256sums=(
"faafea166bf2451a173d9d593352940ec6404145c5d1da5c213423ce4d359e92"
)
build() {
cd xtrans-$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
|