blob: 6bb2744d39675bb5e14894d0cd3fdd1c00b9e567 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Lex Black <autumn-wind at web dot de>
_name=mem_top
pkgname=python-mem_top
pkgver=0.2.1
pkgrel=1
_commit="002f0b17d6e6e97e871fe43448939ce5eaba6afe"
arch=('any')
pkgdesc="Shows top suspects for memory leaks in your Python program"
url="https://pypi.python.org/pypi/mem_top"
license=("MIT")
depends=('python')
source=(git+https://github.com/denis-ryzhkov/mem_top#commit=$_commit)
md5sums=('SKIP')
package() {
cd ${_name}
python setup.py install --prefix=/usr --root=${pkgdir} --optimize=1
}
|