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