summaryrefslogtreecommitdiffstats
path: root/libxmu/MAKEPKG
blob: e4b8fd1564cb22a4e82a5fdafaa51ce145e32713 (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
30
#!/bin/mkpkg
# description: X miscellaneous utility library
# url: https://xorg.freedesktop.org

name=libxmu
version=1.3.1
release=1
depends=(libxext libxt)
source=(https://www.x.org/releases/individual/lib/libXmu-$version.tar.xz)

sha256sums=(
    "81a99e94c4501e81c427cbaa4a11748b584933e94b7a156830c3621256857bc4"
)

build() {
    cd libXmu-$version
    
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG install
    
    rm -rf $PKG/usr/share
}

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

# vim: filetype=sh