summaryrefslogtreecommitdiff
path: root/core/xxhash
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 /core/xxhash
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/xxhash')
-rw-r--r--core/xxhash/.footprint24
-rw-r--r--core/xxhash/.signature6
-rw-r--r--core/xxhash/MAKEPKG38
3 files changed, 68 insertions, 0 deletions
diff --git a/core/xxhash/.footprint b/core/xxhash/.footprint
new file mode 100644
index 0000000..666cbef
--- /dev/null
+++ b/core/xxhash/.footprint
@@ -0,0 +1,24 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/xxhsum
+lrwxrwxrwx root/root bin/xxh128sum -> xxhsum
+lrwxrwxrwx root/root bin/xxh32sum -> xxhsum
+lrwxrwxrwx root/root bin/xxh3sum -> xxhsum
+lrwxrwxrwx root/root bin/xxh64sum -> xxhsum
+drwxr-xr-x root/root include/
+-rw-r--r-- root/root include/xxh3.h
+-rw-r--r-- root/root include/xxhash.h
+drwxr-xr-x root/root lib/
+-rwxr-xr-x root/root lib/libxxhash.so.0.8.4
+lrwxrwxrwx root/root lib/libxxhash.so -> libxxhash.so.0
+lrwxrwxrwx root/root lib/libxxhash.so.0 -> libxxhash.so.0.8.4
+drwxr-xr-x root/root lib/pkgconfig/
+-rw-r--r-- root/root lib/pkgconfig/libxxhash.pc
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/xxhsum.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/xxh128sum.1.gz -> xxhsum.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/xxh32sum.1.gz -> xxhsum.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/xxh3sum.1.gz -> xxhsum.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/xxh64sum.1.gz -> xxhsum.1.gz
diff --git a/core/xxhash/.signature b/core/xxhash/.signature
new file mode 100644
index 0000000..f8cf853
--- /dev/null
+++ b/core/xxhash/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mDohJHZiOldUpS5WDerc76XkvCfwk6BHF/wA1jcLijQA9k0eDhVkeiUkrSCEGP5PaoIZ+UWPtRMBgeOYDE4Y/Ak=
+
+SHA256 (MAKEPKG) = 97e4e65d80ec443bea32b929886044454f3079bc93ca13b4f91ab919d9676087
+SHA256 (.footprint) = 0e15812f33c60288fa45efd8396a01054f1aff6384db09bedaa811adcf42d7c7
+SHA256 (xxhash-0.8.4.tar.gz) = 5738270935e7c3d38a79b3adf7c9692566ce7895a25f67de43ad52ab504acd32
+SHA256 (xxhash#0.8.4-1.pkg.tar.gz) = 1293ab6c4f1b827cb9b1661b5aec05a81069eceee2b5e35cea013d52ca5c14c0
diff --git a/core/xxhash/MAKEPKG b/core/xxhash/MAKEPKG
new file mode 100644
index 0000000..d4b46aa
--- /dev/null
+++ b/core/xxhash/MAKEPKG
@@ -0,0 +1,38 @@
+#!/bin/mkpkg
+# description: Extremely fast non-cryptographic hash algorithm
+# url: https://xxhash.com
+
+name=xxhash
+version=0.8.4
+release=1
+
+source=(https://github.com/Cyan4973/xxHash/archive/v$version/$name-$version.tar.gz)
+
+depends=()
+makedeps=()
+
+sha256sums=(
+ "5738270935e7c3d38a79b3adf7c9692566ce7895a25f67de43ad52ab504acd32"
+)
+
+build() {
+ cd xxHash-$version
+
+ make \
+ PREFIX=/ \
+ MANDIR=/usr/share/man/man1
+
+ make install \
+ DESTDIR=$PKG \
+ PREFIX=/ \
+ MANDIR=/usr/share/man/man1
+
+ rm -f $PKG/lib/*.a
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh