summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorIsmael Luceno2021-09-27 19:50:54 +0200
committerIsmael Luceno2021-09-28 01:51:13 +0200
commit94083fef97eecd68cbe8669176fe98bb66f0ae3c (patch)
tree8b0d72d8db71db84767a62983a2f3e84b5586872 /libs
parenta4b1365305639318aa925af6c3bc5d76d8f01f50 (diff)
utf8proc: Add pkg-config file, PATCHLEVEL++
Diffstat (limited to 'libs')
-rwxr-xr-xlibs/utf8proc/DETAILS1
-rw-r--r--libs/utf8proc/HISTORY4
-rwxr-xr-xlibs/utf8proc/INSTALL14
3 files changed, 19 insertions, 0 deletions
diff --git a/libs/utf8proc/DETAILS b/libs/utf8proc/DETAILS
index bb624df798..a4b9496f87 100755
--- a/libs/utf8proc/DETAILS
+++ b/libs/utf8proc/DETAILS
@@ -1,6 +1,7 @@
source $GRIMOIRE/CMAKE_FUNCTIONS
SPELL=utf8proc
VERSION=2.6.1
+ PATCHLEVEL=1
SOURCE="$SPELL-$VERSION.tar.gz"
SOURCE_URL[0]=https://github.com/JuliaStrings/${SPELL}/archive/v${VERSION}.tar.gz
SOURCE_HASH=sha512:9a09fe58a63c8c7983b8968b9b2c82f3d188724ed125097ea0de6a18d87569c678e226dc5de183108e47b3f068117e6bb352da1c3d24ebfd8018fb0b2346592e
diff --git a/libs/utf8proc/HISTORY b/libs/utf8proc/HISTORY
index c1ce29ad10..6ed9667838 100644
--- a/libs/utf8proc/HISTORY
+++ b/libs/utf8proc/HISTORY
@@ -1,3 +1,7 @@
+2021-09-27 Ismael Luceno <ismael@sourcemage.org>
+ * DETAILS: PATCHLEVEL++
+ * INSTALL: added pkg-config file
+
2020-12-20 Florian Franzmann <bwlf@bandrate.org>
* DETAILS: version 2.6.1
diff --git a/libs/utf8proc/INSTALL b/libs/utf8proc/INSTALL
new file mode 100755
index 0000000000..4e3cddae94
--- /dev/null
+++ b/libs/utf8proc/INSTALL
@@ -0,0 +1,14 @@
+default_install &&
+install -d "$INSTALL_ROOT"/usr/lib/pkgconfig &&
+cat >"$INSTALL_ROOT"/usr/lib/pkgconfig/libutf8proc.pc <<-!
+ prefix=$INSTALL_ROOT/usr
+ exec_prefix=\${prefix}
+ libdir=\${exec_prefix}/lib
+ includedir=\${prefix}/include
+
+ Name: lib$SPELL
+ Description: $SHORT
+ Version: $VERSION
+ Libs: -L\${libdir} -l$SPELL
+ Cflags: -I\${includedir} -DUTF8PROC_EXPORTS
+!