diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /libs/inih/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'libs/inih/MAKEPKG')
| -rw-r--r-- | libs/inih/MAKEPKG | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libs/inih/MAKEPKG b/libs/inih/MAKEPKG new file mode 100644 index 0000000..9067458 --- /dev/null +++ b/libs/inih/MAKEPKG @@ -0,0 +1,32 @@ +#!/bin/mkpkg +# description: Simple .INI file parser library written in C +# url: https://github.com/benhoyt/inih + +name=inih +version=62 +release=2 +makedeps=(meson) +source=(https://github.com/benhoyt/inih/archive/r$version/$name-$version.tar.gz) + +sha256sums=( + "9c15fa751bb8093d042dae1b9f125eb45198c32c6704cd5481ccde460d4f8151" +) + +build() { + meson setup $name-r$version build \ + --prefix=/usr \ + --buildtype=release \ + -D with_INIReader=false \ + -D distro_install=true \ + -D tests=false + + meson compile -C build + DESTDIR=$PKG meson install -C build +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
