summaryrefslogtreecommitdiffstats
path: root/libxmu
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 /libxmu
parent83404b410d422331951d406323962f314f9546ee (diff)
downloadxorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.gz
xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.xz
Initial commit: xorg/x11 ports
Diffstat (limited to 'libxmu')
-rw-r--r--libxmu/MAKEPKG31
1 files changed, 31 insertions, 0 deletions
diff --git a/libxmu/MAKEPKG b/libxmu/MAKEPKG
new file mode 100644
index 0000000..93c12ca
--- /dev/null
+++ b/libxmu/MAKEPKG
@@ -0,0 +1,31 @@
1#!/bin/mkpkg
2# *** OpenTUX ***
3# description: X miscellaneous utility library
4# url: https://xorg.freedesktop.org
5
6name=libxmu
7version=1.3.1
8release=1
9depends=(libxext libxt)
10source=(https://www.x.org/releases/individual/lib/libXmu-$version.tar.xz)
11
12sha256sums=(
13 "81a99e94c4501e81c427cbaa4a11748b584933e94b7a156830c3621256857bc4"
14)
15
16build() {
17 cd libXmu-$version
18
19 ./configure --prefix=/usr
20 make
21 make DESTDIR=$PKG install
22
23 rm -rf $PKG/usr/share
24}
25
26signify() {
27 untrusted comment: *** OpenTUX *** public key
28 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
29}
30
31# vim: filetype=sh