diff options
author | Juergen Daubert <jue@jue.li> | 2020-12-13 12:45:17 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2020-12-14 12:08:12 +0100 |
commit | eb68e0cc79c14706706e27a1cbd863e5d8f3c6ae (patch) | |
tree | 5801e77cdb96d4e7c4c79ed17899ad2565681b86 /inih | |
parent | aab52d30ea8000cff5ad997c92d3a02350dfd370 (diff) | |
download | opt-eb68e0cc79c14706706e27a1cbd863e5d8f3c6ae.tar.gz opt-eb68e0cc79c14706706e27a1cbd863e5d8f3c6ae.tar.xz |
inih: initial release
Diffstat (limited to 'inih')
-rw-r--r-- | inih/.footprint | 10 | ||||
-rw-r--r-- | inih/.signature | 5 | ||||
-rw-r--r-- | inih/Pkgfile | 19 |
3 files changed, 34 insertions, 0 deletions
diff --git a/inih/.footprint b/inih/.footprint new file mode 100644 index 000000000..aa5d10ea7 --- /dev/null +++ b/inih/.footprint @@ -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 diff --git a/inih/.signature b/inih/.signature new file mode 100644 index 000000000..da1ed5bd6 --- /dev/null +++ b/inih/.signature @@ -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 diff --git a/inih/Pkgfile b/inih/Pkgfile new file mode 100644 index 000000000..5822c4ced --- /dev/null +++ b/inih/Pkgfile @@ -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 +} |