30 lines
878 B
Bash
30 lines
878 B
Bash
# Template file for 'sshuttle'
|
|
pkgname=sshuttle
|
|
version=1.1.1
|
|
revision=1
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools_scm python3-Sphinx"
|
|
depends="python3-psutil"
|
|
checkdepends="python3-flake8 python3-mock python3-pytest"
|
|
short_desc="Transparent proxy server that forwards TCP packets over ssh"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="LGPL-2.1-or-later"
|
|
homepage="https://github.com/sshuttle/sshuttle"
|
|
changelog="https://github.com/sshuttle/sshuttle/raw/master/CHANGES.rst"
|
|
distfiles="${PYPI_SITE}/s/sshuttle/sshuttle-${version}.tar.gz"
|
|
checksum=f5a3ed1e5ab1213c7a6df860af41f1a903ab2cafbfef71f371acdcff21e69ee6
|
|
|
|
post_extract() {
|
|
# BUG: wrong permissions (https://github.com/sshuttle/sshuttle/issues/217)
|
|
chmod -R go+rX .
|
|
}
|
|
|
|
pre_check() {
|
|
sed -i -e '/addopts/d' setup.cfg
|
|
}
|
|
|
|
post_install() {
|
|
make -C docs man
|
|
vman docs/_build/man/sshuttle.1
|
|
}
|