blob: 913bde161ddbd28cb432e11782b649bc47fbce64 (
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
30
31
|
#!/bin/mkpkg
# description: X client library
# url: https://xorg.freedesktop.org
name=libx11
version=1.8.13
release=1
depends=(libxcb xtrans)
source=(https://www.x.org/releases/individual/lib/libX11-$version.tar.xz)
sha256sums=(
"69606f485c2c07c14ef64f75b7bb326d48587af33795d9ab3e607c0b5f94f11c"
)
build() {
cd libX11-$version
./configure \
--prefix=/usr \
--disable-specs
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|