diff options
| author | zorz <zorz@opentux.org> | 2026-02-27 17:37:23 +0200 |
|---|---|---|
| committer | zorz <zorz@opentux.org> | 2026-02-27 17:37:23 +0200 |
| commit | de196c8550dfd3317043fcc71de1506ac076e14f (patch) | |
| tree | 1e59293fa24652b1f7c96a95d522afd0590589bc /libxi | |
| parent | 83404b410d422331951d406323962f314f9546ee (diff) | |
| download | xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.gz xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.xz | |
Initial commit: xorg/x11 ports
Diffstat (limited to 'libxi')
| -rw-r--r-- | libxi/MAKEPKG | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libxi/MAKEPKG b/libxi/MAKEPKG new file mode 100644 index 0000000..5c837cd --- /dev/null +++ b/libxi/MAKEPKG | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | #!/bin/mkpkg | ||
| 2 | # *** OpenTUX *** | ||
| 3 | # description: X Input extension library | ||
| 4 | # url: https://xorg.freedesktop.org | ||
| 5 | |||
| 6 | name=libxi | ||
| 7 | version=1.8.2 | ||
| 8 | release=1 | ||
| 9 | depends=(libxext libxfixes) | ||
| 10 | source=(https://www.x.org/releases/individual/lib/libXi-$version.tar.xz) | ||
| 11 | |||
| 12 | build() { | ||
| 13 | cd libXi-$version | ||
| 14 | |||
| 15 | ./configure \ | ||
| 16 | --prefix=/usr \ | ||
| 17 | --disable-docs \ | ||
| 18 | --disable-specs | ||
| 19 | |||
| 20 | make | ||
| 21 | make DESTDIR=$PKG install | ||
| 22 | } | ||
| 23 | |||
| 24 | # vim: filetype=sh | ||