1
0
forked from ports/contrib

xxhash: initial commit, v0.8.0

This commit is contained in:
Alexandr Savca 2021-01-05 17:21:18 +02:00
parent d9dc725741
commit b666fa11c3
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.0
lrwxrwxrwx root/root usr/lib/libxxhash.so.0 -> libxxhash.so.0.8.0
-rwxr-xr-x root/root usr/lib/libxxhash.so.0.8.0
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/contrib.pub
RWSagIOpLGJF35no3q83RdcT+Oy4CwfRXOJLkS+B4xl1dV33OJ6WkiCe0qwcG7IO3WslHa34CP6MYFRkAT4Pwae0YPWc2eSkSQQ=
SHA256 (Pkgfile) = e62db9ea0daa4a3346080e6099a475c2dcfec36d6f089a9b53b510670de8205e
SHA256 (.footprint) = 3efec5b599e480096b3d36e412f809651d74c72c03d0901a275d544897111218
SHA256 (xxhash-0.8.0.tar.gz) = 7054c3ebd169c97b64a92d7b994ab63c70dd53a06974f1f630ab782c28db0f4f

14
xxhash/Pkgfile Normal file
View File

@ -0,0 +1,14 @@
# Description: Extremely fast non-cryptographic hash algorithm
# URL: https://cyan4973.github.io/xxHash/
# Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com
name=xxhash
version=0.8.0
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
}