summaryrefslogtreecommitdiffstats
path: root/libice/MAKEPKG
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 /libice/MAKEPKG
parent83404b410d422331951d406323962f314f9546ee (diff)
downloadxorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.gz
xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.xz
Initial commit: xorg/x11 ports
Diffstat (limited to 'libice/MAKEPKG')
-rw-r--r--libice/MAKEPKG25
1 files changed, 25 insertions, 0 deletions
diff --git a/libice/MAKEPKG b/libice/MAKEPKG
new file mode 100644
index 0000000..8f40944
--- /dev/null
+++ b/libice/MAKEPKG
@@ -0,0 +1,25 @@
1#!/bin/mkpkg
2# *** OpenTUX ***
3# description: X Inter-Client Exchange library
4# url: https://xorg.freedesktop.org
5
6name=libice
7version=1.1.2
8release=1
9depends=(xorgproto xtrans)
10source=(https://www.x.org/releases/individual/lib/libICE-$version.tar.xz)
11
12build() {
13 cd libICE-$version
14
15 ./configure \
16 --prefix=/usr \
17 --disable-docs
18
19 make
20 make DESTDIR=$PKG install
21
22 rm -rf $PKG/usr/share
23}
24
25# vim: filetype=sh