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 /libxinerama | |
| parent | 83404b410d422331951d406323962f314f9546ee (diff) | |
| download | xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.gz xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.xz | |
Initial commit: xorg/x11 ports
Diffstat (limited to 'libxinerama')
| -rw-r--r-- | libxinerama/MAKEPKG | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libxinerama/MAKEPKG b/libxinerama/MAKEPKG new file mode 100644 index 0000000..c98d349 --- /dev/null +++ b/libxinerama/MAKEPKG | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | #!/bin/mkpkg | ||
| 2 | # *** OpenTUX *** | ||
| 3 | # description: X Xinerama multi-monitor library | ||
| 4 | # url: https://xorg.freedesktop.org | ||
| 5 | |||
| 6 | name=libxinerama | ||
| 7 | version=1.1.6 | ||
| 8 | release=1 | ||
| 9 | depends=(libxext) | ||
| 10 | source=(https://www.x.org/releases/individual/lib/libXinerama-$version.tar.xz) | ||
| 11 | |||
| 12 | sha256sums=( | ||
| 13 | "d00fc1599c303dc5cbc122b8068bdc7405d6fcb19060f4597fc51bd3a8be51d7" | ||
| 14 | ) | ||
| 15 | |||
| 16 | build() { | ||
| 17 | cd libXinerama-$version | ||
| 18 | |||
| 19 | ./configure --prefix=/usr | ||
| 20 | make | ||
| 21 | make DESTDIR=$PKG install | ||
| 22 | } | ||
| 23 | |||
| 24 | signify() { | ||
| 25 | untrusted comment: *** OpenTUX *** public key | ||
| 26 | RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 | ||
| 27 | } | ||
| 28 | |||
| 29 | # vim: filetype=sh | ||