summaryrefslogtreecommitdiffstats
path: root/libxpm
diff options
context:
space:
mode:
authorzorz <zorz@krypt.sh>2026-04-01 22:52:53 +0300
committerzorz <zorz@krypt.sh>2026-04-01 22:52:53 +0300
commit510ee94dc6c7b011ba95816e50d4faa8352f5e71 (patch)
treebdebaf589f9aae422a653a29b529008513f072c3 /libxpm
parente304d10a0993bda38d3bda2c0a9f33443ba82212 (diff)
downloadxorg-main.tar.gz
xorg-main.tar.xz
Diffstat (limited to 'libxpm')
-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