xxhash: initial commit, version 0.8.2

This commit is contained in:
John McQuah 2023-11-25 00:48:42 +00:00
parent fe4d0849d6
commit d77d4e58c8
3 changed files with 42 additions and 0 deletions

23
xxhash/.footprint Normal file
View File

@ -0,0 +1,23 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
lrwxrwxrwx root/root usr/bin/xxh128sum -> xxhsum
lrwxrwxrwx root/root usr/bin/xxh32sum -> xxhsum
lrwxrwxrwx root/root usr/bin/xxh64sum -> xxhsum
-rwxr-xr-x root/root usr/bin/xxhsum
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/xxh3.h
-rw-r--r-- root/root usr/include/xxhash.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libxxhash.a
lrwxrwxrwx root/root usr/lib/libxxhash.so -> libxxhash.so.0.8.2
lrwxrwxrwx root/root usr/lib/libxxhash.so.0 -> libxxhash.so.0.8.2
-rwxr-xr-x root/root usr/lib/libxxhash.so.0.8.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libxxhash.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
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/xxh64sum.1.gz -> xxhsum.1.gz
-rw-r--r-- root/root usr/share/man/man1/xxhsum.1.gz

5
xxhash/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/jmq.pub
RWTTPlFarK9CxL9Lot95qCX0kJdmIYCXwn6U4cYu1xfaQDZHVNwJKAXV7fneuOg9QojNay2vKoIJ3XtwerVl9aMKiH4GfbJzxgY=
SHA256 (Pkgfile) = 46d3fae7d21e90fb4bdca5f05c4b303fc6666ad2fbdb004826dc68d5711effb1
SHA256 (.footprint) = d65dc540def23d3ca650a2d45f35c8dd5a637e61a87ff3598dd24187638d1812
SHA256 (xxhash-0.8.2.tar.gz) = baee0c6afd4f03165de7a4e67988d16f0f2b257b51d0e3cb91909302a26a79c4

14
xxhash/Pkgfile Normal file
View File

@ -0,0 +1,14 @@
# Description: extremely fast, noncryptographic hash algorithm
# URL: https://github.com/Cyan4973/xxHash
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on:
name=xxhash
version=0.8.2
release=1
source=(https://github.com/Cyan4973/xxHash/archive/v$version/$name-$version.tar.gz)
build() {
cd xxHash-$version
make PREFIX=/usr DESTDIR=$PKG install
}