Skip to content

Commit

Permalink
iniparser: bump to 4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asimovc committed Jul 5, 2024
1 parent 2bc0f41 commit 3c21685
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
13 changes: 8 additions & 5 deletions community/iniparser/build
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
#!/bin/sh -e

make
make PREFIX=/usr

install -Dm 644 src/iniparser.h "$1/usr/include/iniparser.h"
install -Dm 644 src/dictionary.h "$1/usr/include/dictionary.h"
install -Dm 755 libiniparser.so.1 "$1/usr/lib/libiniparser.so.1"
ln -s libiniparser.so.1 "$1/usr/lib/libiniparser.so"
# 'make install' doesn't create the directory.
mkdir -p "$1/usr/include"
cp src/dictionary.h "$1/usr/include/dictionary.h"
cp src/iniparser.h "$1/usr/include/iniparser.h"

mkdir -p "$1/usr/lib"
cp libiniparser.so.1 "$1/usr/lib/libiniparser.so.1"
ln -s libiniparser.so.1 "$1/usr/lib/libiniparser.so"
2 changes: 1 addition & 1 deletion community/iniparser/checksums
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6f5ec3dfdc050a83f0f2b1db065653e2084b39a08566ab04f131c09b9205669f2e
1ae8b9419081b8e7731edf956b14cc2052cb3fea1efdf37247b93dd3a0127c3017
2 changes: 1 addition & 1 deletion community/iniparser/sources
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://github.com/ndevilla/iniparser/archive/refs/tags/v4.1.tar.gz
https://github.com/ndevilla/iniparser/archive/refs/tags/v4.2.1.tar.gz
2 changes: 1 addition & 1 deletion community/iniparser/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.1 1
4.2.1 1

0 comments on commit 3c21685

Please sign in to comment.