summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5b5e7c28a395c6a92a0cdfe17326a8816973018b (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: kmille aur@androidloves.me
# Contributer: Matt Parnell <parwok@gmail.com>

pkgname=vpn-slice-git
_pkgname=vpn-slice
pkgver=v0.15.r38.g2bd5253
pkgrel=1
pkgdesc="Python based vpnc-script replacement for easy and secure split-tunnel VPN setup"
arch=('any')
url="https://github.com/dlenski/vpn-slice"
license=('GPL')
makedepends=(git python-setuptools)
depends=(python python-setproctitle python-dnspython bind-tools iproute2 iptables)
source=(git+https://github.com/dlenski/vpn-slice)
sha512sums=('SKIP')

pkgver() {
  cd "$_pkgname"
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "$srcdir/$_pkgname"
  python setup.py build
}

package() {
  cd "$srcdir/$_pkgname"
  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}