46 lines
1.2 KiB
Text
46 lines
1.2 KiB
Text
# Template file for 'varnish'
|
|
pkgname=varnish
|
|
version=3.0.6
|
|
revision=2
|
|
lib32disabled=yes
|
|
replaces="runit-void<20141013_2"
|
|
build_options="systemd"
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static"
|
|
hostmakedepends="pkg-config python"
|
|
makedepends="pcre-devel readline-devel jemalloc-devel"
|
|
conf_files="/etc/varnish/default.vcl"
|
|
make_dirs="/var/varnish 750 nobody nogroup"
|
|
short_desc="A fast caching HTTP reverse proxy"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="Simplified BSD"
|
|
homepage="https://www.varnish-cache.org/"
|
|
distfiles="http://repo.varnish-cache.org/source/${pkgname}-${version}.tar.gz"
|
|
checksum=840ded8f25e7343117f6e3e2015759118f1d2db357ae8d7e02ea964e6fb680b7
|
|
|
|
post_install() {
|
|
# systemd service
|
|
if [ "$build_option_systemd" ]; then
|
|
vinstall ${FILESDIR}/varnish.service 644 usr/lib/systemd/system
|
|
# systemd reload helper
|
|
vinstall ${FILESDIR}/varnish-vcl-reload 755 usr/sbin
|
|
fi
|
|
vsv varnishd
|
|
}
|
|
|
|
libvarnishapi_package() {
|
|
short_desc+=" - API runtime library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
libvarnishapi-devel_package() {
|
|
depends="libvarnishapi>=${version}_${revision}"
|
|
short_desc+=" - API development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|