mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-27 20:31:40 +01:00
48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=mitmproxy
|
|
pkgver=0.10.1
|
|
pkgrel=0
|
|
pkgdesc="An interactive SSL-capable intercepting HTTP proxy"
|
|
url="http://www.mitmproxy.org/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python py-netlib py-flask py-urwid py-$pkgname py-itsdangerous"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools "
|
|
install=""
|
|
subpackages="py-$pkgname:py"
|
|
source="http://mitmproxy.org/download/mitmproxy-0.10.1.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
py() {
|
|
cd "$_builddir"
|
|
pkgdesc="$pkgname python bindings"
|
|
install -d "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/python* "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
md5sums="e166a2767e391c323b2d0b32013f0826 mitmproxy-0.10.1.tar.gz"
|
|
sha256sums="527cbff76e0d49d7db62561252d399e1c747730676515c4ed89250c223e2fe56 mitmproxy-0.10.1.tar.gz"
|
|
sha512sums="2bef02f07942177044afa24749c4e8e2ba1aae5ee33e2cbffbecc557a09351865b70dc92b9acfd285716a82c84026a3eb93f889176fd288c1e8d67a415a5c79a mitmproxy-0.10.1.tar.gz"
|