diff options
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 | ||