# Maintainer: Maxime Gauduin # Contributor: Alberto Oporto Ames pkgname=libinih pkgver=58 pkgrel=1 pkgdesc='A simple .INI file parser written in C' arch=(x86_64) url=https://github.com/benhoyt/inih license=(BSD) depends=( gcc-libs glibc ) makedepends=( git meson ) provides=( libinih.so libINIReader.so ) _tag=5cc5e2c24642513aaa5b19126aad42d0e4e0923e source=(git+https://github.com/benhoyt/inih.git#tag=${_tag}) b2sums=(SKIP) 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/ } # vim: ts=2 sw=2 et: