summaryrefslogtreecommitdiffstats
path: root/libxi/MAKEPKG
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 /libxi/MAKEPKG
parente304d10a0993bda38d3bda2c0a9f33443ba82212 (diff)
downloadxorg-510ee94dc6c7b011ba95816e50d4faa8352f5e71.tar.gz
xorg-510ee94dc6c7b011ba95816e50d4faa8352f5e71.tar.xz
Diffstat (limited to 'libxi/MAKEPKG')
-rw-r--r--libxi/MAKEPKG28
1 files changed, 28 insertions, 0 deletions
diff --git a/libxi/MAKEPKG b/libxi/MAKEPKG
new file mode 100644
index 0000000..f2387e1
--- /dev/null
+++ b/libxi/MAKEPKG
@@ -0,0 +1,28 @@
1#!/bin/mkpkg
2# description: X Input extension library
3# url: https://xorg.freedesktop.org
4
5name=libxi
6version=1.8.2
7release=1
8depends=(libxext libxfixes)
9source=(https://www.x.org/releases/individual/lib/libXi-$version.tar.xz)
10
11build() {
12 cd libXi-$version
13
14 ./configure \
15 --prefix=/usr \
16 --disable-docs \
17 --disable-specs
18
19 make
20 make DESTDIR=$PKG install
21}
22
23signify() {
24 untrusted comment: public key
25 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
26}
27
28# vim: filetype=sh