summaryrefslogtreecommitdiffstats
path: root/libxkbfile/MAKEPKG
blob: d25adfbcd66df93ba46a52df6146b36dd1c02cc3 (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
31
#!/bin/mkpkg
# *** OpenTUX ***
# description: X keyboard file library
# url: https://xorg.freedesktop.org

name=libxkbfile
version=1.2.0
release=1
depends=(libx11)
makedeps=(meson)
source=(https://www.x.org/releases/individual/lib/$name-$version.tar.xz)

sha256sums=(
    "7f71884e5faf56fb0e823f3848599cf9b5a9afce51c90982baeb64f635233ebf"
)

build() {
    meson setup $name-$version build \
        --prefix=/usr \
        --buildtype=plain
    
    meson compile -C build
    DESTDIR=$PKG meson install -C build
}

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

# vim: filetype=sh