diff options
| author | zorz <zorz@krypt.sh> | 2026-04-01 22:52:53 +0300 |
|---|---|---|
| committer | zorz <zorz@krypt.sh> | 2026-04-01 22:52:53 +0300 |
| commit | 510ee94dc6c7b011ba95816e50d4faa8352f5e71 (patch) | |
| tree | bdebaf589f9aae422a653a29b529008513f072c3 /libxi/MAKEPKG | |
| parent | e304d10a0993bda38d3bda2c0a9f33443ba82212 (diff) | |
| download | xorg-main.tar.gz xorg-main.tar.xz | |
Diffstat (limited to 'libxi/MAKEPKG')
| -rw-r--r-- | libxi/MAKEPKG | 28 |
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 | |||
| 5 | name=libxi | ||
| 6 | version=1.8.2 | ||
| 7 | release=1 | ||
| 8 | depends=(libxext libxfixes) | ||
| 9 | source=(https://www.x.org/releases/individual/lib/libXi-$version.tar.xz) | ||
| 10 | |||
| 11 | build() { | ||
| 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 | |||
| 23 | signify() { | ||
| 24 | untrusted comment: public key | ||
| 25 | RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 | ||
| 26 | } | ||
| 27 | |||
| 28 | # vim: filetype=sh | ||