34 lines
774 B
Bash
34 lines
774 B
Bash
# Template file for 'haveged'
|
|
pkgname=haveged
|
|
version=1.9.4
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="Entropy harvesting daemon using CPU timings"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="http://www.issihosts.com/haveged"
|
|
distfiles="https://github.com/jirka-h/haveged/archive/${version}.tar.gz"
|
|
checksum=c4959d3cb1fa6391d16a3aa1ba4d82cd3a0d497206ae4b87d638088c0664e5aa
|
|
|
|
post_install() {
|
|
vsv $pkgname
|
|
}
|
|
|
|
libhaveged_package() {
|
|
short_desc+=" - runtime library"
|
|
pkg_install() {
|
|
vmove usr/lib/*.so.*
|
|
}
|
|
}
|
|
|
|
libhaveged-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="libhaveged-${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|