blob: b5f7442344a977c9883ed0a2a1c0e39aacd49de3 (
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
# description: X Pixmap library
# url: https://xorg.freedesktop.org
name=libxpm
version=3.5.18
release=1
depends=(libxext libxt)
source=(https://www.x.org/releases/individual/lib/libXpm-$version.tar.xz)
sha256sums=(
"b4ed79bfc718000edee837d551c35286f0b84576db0ce07bbbebe60a4affa1e4"
)
build() {
cd libXpm-$version
./configure \
--prefix=/usr \
--disable-open-zfile
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: *** OpenTUX *** public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|