b321ec2ad7
- significantly improve file reading performance on Linux/Unix - print 'Nothing to verify' when verifying a hash file without a message digest - count unparsed lines of a hash file as errors - print line numbers of unparsed lines of a hash file - Bugfix: fix verification of some hash files containing spaces in file paths
37 lines
1 KiB
Bash
37 lines
1 KiB
Bash
# Template file for 'rhash'
|
|
pkgname=rhash
|
|
version=1.4.2
|
|
revision=1
|
|
wrksrc="RHash-${version}"
|
|
build_style=configure
|
|
configure_args="--enable-openssl --disable-openssl-runtime
|
|
--prefix=/usr --sysconfdir=/etc"
|
|
conf_files="/etc/rhashrc"
|
|
make_build_target="all lib-shared"
|
|
make_install_target="install install-lib-shared"
|
|
makedepends="openssl-devel"
|
|
short_desc="Utility for computing hash sums and creating magnet links"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="0BSD"
|
|
homepage="https://github.com/rhash/RHash"
|
|
distfiles="https://github.com/rhash/RHash/archive/v${version}.tar.gz"
|
|
checksum=600d00f5f91ef04194d50903d3c79412099328c42f28ff43a0bdb777b00bec62
|
|
|
|
post_extract() {
|
|
sed -i 's/__GLIBC__/__linux__/' librhash/byte_order.h
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
make -C librhash install-lib-headers DESTDIR=$DESTDIR PREFIX=/usr
|
|
ln -s librhash.so.0 $DESTDIR/usr/lib/librhash.so
|
|
}
|
|
|
|
rhash-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|