summaryrefslogtreecommitdiffstats
path: root/libxinerama/MAKEPKG
blob: c98d349e627f545d1b756370258140c55f1b64d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/mkpkg
# *** OpenTUX ***
# description: X Xinerama multi-monitor library
# url: https://xorg.freedesktop.org

name=libxinerama
version=1.1.6
release=1
depends=(libxext)
source=(https://www.x.org/releases/individual/lib/libXinerama-$version.tar.xz)

sha256sums=(
    "d00fc1599c303dc5cbc122b8068bdc7405d6fcb19060f4597fc51bd3a8be51d7"
)

build() {
    cd libXinerama-$version
    
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG install
}

signify() {
    untrusted comment: *** OpenTUX *** public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh