summaryrefslogtreecommitdiffstats
path: root/libice/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'libice/MAKEPKG')
-rw-r--r--libice/MAKEPKG29
1 files changed, 29 insertions, 0 deletions
diff --git a/libice/MAKEPKG b/libice/MAKEPKG
new file mode 100644
index 0000000..e481ca5
--- /dev/null
+++ b/libice/MAKEPKG
@@ -0,0 +1,29 @@
1#!/bin/mkpkg
2# description: X Inter-Client Exchange library
3# url: https://xorg.freedesktop.org
4
5name=libice
6version=1.1.2
7release=1
8depends=(xorgproto xtrans)
9source=(https://www.x.org/releases/individual/lib/libICE-$version.tar.xz)
10
11build() {
12 cd libICE-$version
13
14 ./configure \
15 --prefix=/usr \
16 --disable-docs
17
18 make
19 make DESTDIR=$PKG install
20
21 rm -rf $PKG/usr/share
22}
23
24signify() {
25 untrusted comment: public key
26 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
27}
28
29# vim: filetype=sh