vp-build/srcpkgs/rhash/template

37 lines
1.0 KiB
Bash

# Template file for 'rhash'
pkgname=rhash
version=1.3.6
revision=3
wrksrc="RHash-${version}"
build_style=gnu-configure
configure_args="--enable-openssl --disable-openssl-runtime"
conf_files="/etc/rhashrc"
makedepends="libressl-devel"
short_desc="Utility for computing hash sums and creating magnet links"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="RHash"
homepage="https://github.com/rhash/RHash"
distfiles="https://github.com/rhash/RHash/archive/v${version}.tar.gz"
checksum=964df972b60569b5cb35ec989ced195ab8ea514fc46a74eab98e86569ffbcf92
make_build_target="all lib-shared"
make_install_target="install install-lib-shared"
post_extract() {
sed -i 's/__GLIBC__/__linux__/' librhash/byte_order.h
}
post_install() {
vlicense COPYING
make -C librhash install-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"
}
}