51 lines
1.2 KiB
Bash
51 lines
1.2 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=libinih
|
|
pkgver=57
|
|
pkgrel=01
|
|
pkgdesc='A simple .INI file parser written in C'
|
|
url=https://github.com/benhoyt/inih
|
|
depends=( gcc-libs glibc )
|
|
makedepends=( git meson )
|
|
provides=(libinih.so libINIReader.so)
|
|
_tag=9cecf0643da0846e77f64d10a126d9f48b9e05e8
|
|
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/
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=(BSD)
|
|
|
|
sha256sums=(SKIP)
|
|
|
|
## 3c2fcccc30345ffe04bdd315b3bf6b02d628a1fec3e0cbb6876b8f76acc171a9 libinih-57-01-x86_64.pkg.tar.lz
|
|
|