blob: 3d65af6ce703417f085ae8291602f911e8dd674f (
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
27
28
29
30
31
|
#!/bin/mkpkg
# *** OpenTUX ***
# description: X11 toolkit intrinsics library
# url: https://xorg.freedesktop.org
name=libxt
version=1.3.1
release=1
depends=(libsm libx11)
source=(https://www.x.org/releases/individual/lib/libXt-$version.tar.xz)
sha256sums=(
"e0a774b33324f4d4c05b199ea45050f87206586d81655f8bef4dba434d931288"
)
build() {
cd libXt-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}
signify() {
untrusted comment: *** OpenTUX *** public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|