updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / mitmproxy-git / PKGBUILD
blob9552472d46a2bba31b4bb2aa9f8030a8010eeef6
1 # Contributor: alphazo <alphazo@gmail.com>
2 pkgname=mitmproxy-git
3 pkgver=20110524
4 pkgrel=1
5 pkgdesc="mitmproxy is an SSL-capable, intercepting HTTP proxy. It provides a console interface that allows traffic flows to be inspected and edited on the fly. mitmdump is the command-line version of mitmproxy, with the same functionality but without the frills. Think tcpdump for HTTP."
6 arch=('any')
7 url="https://github.com/cortesi/mitmproxy"
8 license=('GPL')
9 groups=()
10 depends=('openssl' 'python-urwid')
11 optdepends=()
12 provides=()
13 conflicts=()
14 replaces=()
15 backup=()
16 options=()
17 install=
18 #source=
19 #md5sums=
21 _gitroot="git://github.com/cortesi/mitmproxy.git"
22 _gitname="mitmproxy"
24 build() {
25   cd "$srcdir"
26   msg "Connecting to GIT server...."
27   if [ -d $_gitname ] ; then
28     cd $_gitname && git pull origin
29     msg "The local files are updated."
30   else
31     git clone $_gitroot $_gitname
32   fi
33   msg "GIT checkout done or server timeout"
34   msg "Starting make..."
36   rm -rf "$srcdir/$_gitname-build"
37   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
38   cd "$srcdir/$_gitname-build"
39   python2 setup.py install --root=${pkgdir} || return 1