diff options
-rw-r--r-- | xxhash/.footprint | 23 | ||||
-rw-r--r-- | xxhash/.signature | 5 | ||||
-rw-r--r-- | xxhash/Pkgfile | 14 |
3 files changed, 42 insertions, 0 deletions
diff --git a/xxhash/.footprint b/xxhash/.footprint new file mode 100644 index 000000000..f0580a34b --- /dev/null +++ b/xxhash/.footprint @@ -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 diff --git a/xxhash/.signature b/xxhash/.signature new file mode 100644 index 000000000..be000c3e1 --- /dev/null +++ b/xxhash/.signature @@ -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 diff --git a/xxhash/Pkgfile b/xxhash/Pkgfile new file mode 100644 index 000000000..f77b009f8 --- /dev/null +++ b/xxhash/Pkgfile @@ -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 +} |