34 lines
776 B
Bash
34 lines
776 B
Bash
# Template file for 'haveged'
|
|
pkgname=haveged
|
|
version=1.9.6
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="Entropy harvesting daemon using CPU timings"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="http://www.issihosts.com/haveged"
|
|
distfiles="https://github.com/jirka-h/haveged/archive/v${version}.tar.gz"
|
|
checksum=4d4c046755476d3734ffb78772c242c25913ff0eb7509c143671dae6ec9d1189
|
|
|
|
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
|
|
}
|
|
}
|