rhash: initial commit, version 1.4.1

This commit is contained in:
Tim Biermann 2021-06-15 21:23:15 +00:00
parent a7fbc1ac06
commit 15c79bee8b
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 59 additions and 0 deletions

36
rhash/.footprint Normal file
View File

@ -0,0 +1,36 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
lrwxrwxrwx root/root usr/bin/ed2k-link -> rhash
lrwxrwxrwx root/root usr/bin/edonr256-hash -> rhash
lrwxrwxrwx root/root usr/bin/edonr512-hash -> rhash
lrwxrwxrwx root/root usr/bin/gost12-256-hash -> rhash
lrwxrwxrwx root/root usr/bin/gost12-512-hash -> rhash
lrwxrwxrwx root/root usr/bin/has160-hash -> rhash
lrwxrwxrwx root/root usr/bin/magnet-link -> rhash
-rwxr-xr-x root/root usr/bin/rhash
lrwxrwxrwx root/root usr/bin/sfv-hash -> rhash
lrwxrwxrwx root/root usr/bin/tiger-hash -> rhash
lrwxrwxrwx root/root usr/bin/tth-hash -> rhash
lrwxrwxrwx root/root usr/bin/whirlpool-hash -> rhash
drwxr-xr-x root/root usr/etc/
-rw-r--r-- root/root usr/etc/rhashrc
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/rhash.h
-rw-r--r-- root/root usr/include/rhash_torrent.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/librhash.so.0
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/ed2k-link.1.gz -> rhash.1.gz
lrwxrwxrwx root/root usr/share/man/man1/edonr256-hash.1.gz -> rhash.1.gz
lrwxrwxrwx root/root usr/share/man/man1/edonr512-hash.1.gz -> rhash.1.gz
lrwxrwxrwx root/root usr/share/man/man1/gost12-256-hash.1.gz -> rhash.1.gz
lrwxrwxrwx root/root usr/share/man/man1/gost12-512-hash.1.gz -> rhash.1.gz
lrwxrwxrwx root/root usr/share/man/man1/has160-hash.1.gz -> rhash.1.gz
lrwxrwxrwx root/root usr/share/man/man1/magnet-link.1.gz -> rhash.1.gz
-rw-r--r-- root/root usr/share/man/man1/rhash.1.gz
lrwxrwxrwx root/root usr/share/man/man1/sfv-hash.1.gz -> rhash.1.gz
lrwxrwxrwx root/root usr/share/man/man1/tiger-hash.1.gz -> rhash.1.gz
lrwxrwxrwx root/root usr/share/man/man1/tth-hash.1.gz -> rhash.1.gz
lrwxrwxrwx root/root usr/share/man/man1/whirlpool-hash.1.gz -> rhash.1.gz

5
rhash/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32HqksIzWUVPE7Y267aHxO+P0dEs+V+Y8VMMQUZnaqlQwqEWJE95ECcF16WutMiE6sr/PD+bo56UV1yJdrYzUQk=
SHA256 (Pkgfile) = 006fa543e3eec13d01b4bf1608b63e15320c25d51deb5572f40b217129abbf9c
SHA256 (.footprint) = 5f2cb67899a87e482415c95b2164fc00b8160689cab14e29b6bb410ec7d536fe
SHA256 (rhash-1.4.1.tar.gz) = 430c812733e69b78f07ce30a05db69563450e41e217ae618507a4ce2e144a297

18
rhash/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Great utility for computing hash sums
# URL: https://github.com/rhash/RHash
# Maintainer: Tim Biermann, tbier at posteo dot de
name=rhash
version=1.4.1
release=1
source=(https://github.com/rhash/RHash/archive/v$version/$name-$version.tar.gz)
build() {
cd RHash-$version
./configure --prefix=/usr \
--extra-cflags="$CFLAGS" \
--extra-ldflags="$LDFLAGS"
make
make DESTDIR=$PKG install
make DESTDIR=$PKG install-lib-headers install-lib-shared
}