summaryrefslogtreecommitdiff
path: root/libs/utf8proc
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /libs/utf8proc
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'libs/utf8proc')
-rw-r--r--libs/utf8proc/.footprint10
-rw-r--r--libs/utf8proc/.signature6
-rw-r--r--libs/utf8proc/MAKEPKG31
3 files changed, 47 insertions, 0 deletions
diff --git a/libs/utf8proc/.footprint b/libs/utf8proc/.footprint
new file mode 100644
index 0000000..b91b590
--- /dev/null
+++ b/libs/utf8proc/.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/utf8proc.h
+drwxr-xr-x root/root usr/lib/
+-rwxr-xr-x root/root usr/lib/libutf8proc.so.3.2.3
+lrwxrwxrwx root/root usr/lib/libutf8proc.so -> libutf8proc.so.3.2.3
+lrwxrwxrwx root/root usr/lib/libutf8proc.so.3 -> libutf8proc.so.3.2.3
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/libutf8proc.pc
+-rw-r--r-- root/root usr/lib/pkgconfig/utf8proc.pc
diff --git a/libs/utf8proc/.signature b/libs/utf8proc/.signature
new file mode 100644
index 0000000..5dabd94
--- /dev/null
+++ b/libs/utf8proc/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mFrrAoS5TbGUmkZJcAIgVKBINXaZiVErnaU0bqJ1nC1hPw9nqnOyM6O4mzsx4q1Sf6eqJBVxl/IIT9FMpcfRYAI=
+
+SHA256 (MAKEPKG) = 1a0f10fcfac337424b52f9a50d8b22a7731783b72366d70a0c7e9e5f228e15dd
+SHA256 (.footprint) = 6ba1d9eff6178e27496172ce8d452ba05f3e6b589855a28b8e284a9bef9f0ed3
+SHA256 (utf8proc-2.11.3.tar.gz) = abfed50b6d4da51345713661370290f4f4747263ee73dc90356299dfc7990c78
+SHA256 (utf8proc#2.11.3-1.pkg.tar.gz) = 59102b4e16c0a05d67a890892cad82fa89bcdc6cd11670f744d991a4d6233bc5
diff --git a/libs/utf8proc/MAKEPKG b/libs/utf8proc/MAKEPKG
new file mode 100644
index 0000000..c3b46db
--- /dev/null
+++ b/libs/utf8proc/MAKEPKG
@@ -0,0 +1,31 @@
+#!/bin/mkpkg
+# description: Clean C library for processing UTF-8 Unicode data
+# url: https://juliastrings.github.io/utf8proc/
+
+name=utf8proc
+version=2.11.3
+release=1
+source=(https://github.com/JuliaStrings/utf8proc/archive/v$version/$name-$version.tar.gz)
+
+sha256sums=(
+ "abfed50b6d4da51345713661370290f4f4747263ee73dc90356299dfc7990c78"
+)
+
+build() {
+ cd $name-$version
+
+ make
+ make DESTDIR=$PKG prefix=/usr install
+
+ cp $PKG/usr/lib/pkgconfig/libutf8proc.pc $PKG/usr/lib/pkgconfig/utf8proc.pc
+ sed -i 's,^Name: libutf8proc,Name: utf8proc,' $PKG/usr/lib/pkgconfig/utf8proc.pc
+
+ rm -f $PKG/usr/lib/libutf8proc.a
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh