summaryrefslogtreecommitdiffstats
path: root/libxpm/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'libxpm/MAKEPKG')
-rw-r--r--libxpm/MAKEPKG31
1 files changed, 31 insertions, 0 deletions
diff --git a/libxpm/MAKEPKG b/libxpm/MAKEPKG
new file mode 100644
index 0000000..07710ce
--- /dev/null
+++ b/libxpm/MAKEPKG
@@ -0,0 +1,31 @@
1#!/bin/mkpkg
2# description: X Pixmap library
3# url: https://xorg.freedesktop.org
4
5name=libxpm
6version=3.5.18
7release=1
8depends=(libxext libxt)
9source=(https://www.x.org/releases/individual/lib/libXpm-$version.tar.xz)
10
11sha256sums=(
12 "b4ed79bfc718000edee837d551c35286f0b84576db0ce07bbbebe60a4affa1e4"
13)
14
15build() {
16 cd libXpm-$version
17
18 ./configure \
19 --prefix=/usr \
20 --disable-open-zfile
21
22 make
23 make DESTDIR=$PKG install
24}
25
26signify() {
27 untrusted comment: public key
28 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
29}
30
31# vim: filetype=sh