summaryrefslogblamecommitdiffstats
path: root/libxkbfile/MAKEPKG
blob: d25adfbcd66df93ba46a52df6146b36dd1c02cc3 (plain) (tree)






























                                                                        
#!/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