contrib/rhash/Pkgfile

19 lines
477 B
Plaintext
Raw Normal View History

2021-06-15 23:23:15 +02:00
# Description: Great utility for computing hash sums
# URL: https://github.com/rhash/RHash
# Maintainer: Tim Biermann, tbier at posteo dot de
name=rhash
2021-07-15 00:05:18 +02:00
version=1.4.2
2021-06-15 23:23:15 +02:00
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
}