#!/usr/bin/bash # JOBoRun : Jwm OpenBox Obarun RUNit # Maintainer : Joe Bo Run # PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname" # Website : https://pozol.eu #-----------------------------------------| DESCRIPTION |--------------------------------------- pkgname=libinih pkgver=56 pkgrel=01 pkgdesc='A simple .INI file parser written in C' arch=(x86_64) url=https://github.com/benhoyt/inih depends=( gcc-libs glibc ) makedepends=( git meson ) provides=(libinih.so libINIReader.so) _tag=5e1d9e2625842dddb3f9c086a50f22e4f45dfc2b source=(git+https://github.com/benhoyt/inih.git#tag=${_tag}) #prepare() { # cd inih # git cherry-pick -n 32519ea045670fbd9a057a9c48f77d7b473ce53b #} pkgver() { cd inih git describe --tags | sed 's/^r//' } build() { arch-meson inih build \ -Ddefault_library=shared \ -Ddistro_install=true \ -Dwith_INIReader=true meson compile -C build } package() { DESTDIR="$pkgdir" meson install -C build install -Dm 644 inih/LICENSE.txt -t "${pkgdir}"/usr/share/licenses/libinih/ } #---- license gpg-key sha256sums ---- license=(BSD) sha256sums=(SKIP)