inih: initial release

This commit is contained in:
Juergen Daubert 2020-12-13 12:45:17 +01:00
parent aab52d30ea
commit eb68e0cc79
3 changed files with 34 additions and 0 deletions

10
inih/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/INIReader.h
-rw-r--r-- root/root usr/include/ini.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libINIReader.a
-rw-r--r-- root/root usr/lib/libinih.a
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/INIReader.pc
-rw-r--r-- root/root usr/lib/pkgconfig/inih.pc

5
inih/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/fTDMZy9DzkDyJ25P/Z0ORUThBm2PgLzCrhrwNxnOMbSAgyIMi/nuSITmnAxSI697mX3ro+cuP8RCrYuqCd3ygw=
SHA256 (Pkgfile) = 05b1f1a658493eb8123ff84933dd8397d5c975ab7a3e384a0865407fcd917be4
SHA256 (.footprint) = 20f9abe83a2341c4082a257aad7e179af3261551ab011dd784cfb1a689cf0523
SHA256 (inih-52.tar.gz) = 439cff9ce9a8afc52d08772ac3e93b3cecd79c7707f871fb4534fb3a48201880

19
inih/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Simple .INI file parser library written in C
# URL: http://https://github.com/benhoyt/inih
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=inih
version=52
release=1
source=(https://github.com/benhoyt/inih/archive/r$version/$name-$version.tar.gz)
build() {
meson setup build $name-r$version \
--prefix=/usr \
--buildtype=release \
-D with_INIReader=true \
-D distro_install=true
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}