summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fbe573d63b6f644b5a05052dce4e401f39b8e3e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Maintainer: Michael Serajnik <ms dot mserajnik dot at>
pkgname=traffictoll-git
_pkgname=TrafficToll
pkgver=r35.0add8b6
pkgrel=1
pkgdesc="NetLimiter-like traffic shaping for Linux"
arch=('any')
url="https://github.com/cryzed/${_pkgname}"
license=('GPL3')
depends=('python' 'python-loguru' 'python-psutil' 'python-ruamel-yaml')
makedepends=('python-pip' 'python-poetry')
conflicts=('traffictoll')
source=("git+https://github.com/cryzed/${_pkgname}.git")
md5sums=('SKIP')

pkgver() {
  cd "${srcdir}/${_pkgname}"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd "${srcdir}/${_pkgname}"

  poetry build
}

package() {
  INSTALL_PATH="${srcdir}/${_pkgname}/dist/${_pkgname}-*.whl"
  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" --ignore-installed --no-deps --no-warn-script-location $INSTALL_PATH
}