vp-build/srcpkgs/openvswitch/template

43 lines
1.3 KiB
Bash

# Template file for 'openvswitch'
pkgname=openvswitch
version=2.9.2
revision=2
build_style=gnu-configure
configure_args="--with-rundir=/run/openvswitch"
hostmakedepends="python perl python-six"
makedepends="libressl-devel ${hostmakedepends}"
depends="python"
short_desc="Production quality, multilayer virtual switch"
maintainer="Renato Aguiar <contact@renatoaguiar.org>"
license="Apache-2.0"
homepage="http://openvswitch.org/"
distfiles="http://openvswitch.org/releases/${pkgname}-${version}.tar.gz"
checksum=90f084dc282fdb588a2cfff351fea359492f69600f1e4a1286e24e44901de113
only_for_archs="i686 i686-musl x86_64 x86_64-musl"
_completiondir="/usr/share/bash-completion/completions"
make_install_args+=" completiondir=${_completiondir}"
pycompile_dirs="usr/share/openvswitch/python"
post_install() {
for cmd in ovs-appctl ovs-vsctl; do
chmod 0644 ${DESTDIR}${_completiondir}/$cmd-bashcomp.bash
mv ${DESTDIR}${_completiondir}/$cmd-bashcomp.bash \
${DESTDIR}${_completiondir}/$cmd
done
for cmd in ovs-ofctl ovs-dpctl ovsdb-tool; do
ln -s ovs-appctl ${DESTDIR}${_completiondir}/$cmd
done
vsv ovsdb-server
vsv ovs-vswitchd
}
openvswitch-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/*.a
}
}