File: PKGBUILD

package info (click to toggle)
python-memprof 0.3.6-5.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 252 kB
  • sloc: python: 345; sh: 7; makefile: 4
file content (26 lines) | stat: -rw-r--r-- 637 bytes parent folder | download | duplicates (4)
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
# Maintainer: Jose M. Dana

pkgname=python-memprof
pypiname=memprof
pkgver=0.3.3
pkgrel=1
pkgdesc="A memory profiler for Python. It logs and plots the memory usage of all the variables."
arch=(any)
url="http://jmdana.github.io/memprof/"
license=('GPL')
groups=()
depends=("python" "python-matplotlib" "cython")
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
install=
source=("https://pypi.python.org/packages/source/m/memprof/memprof-$pkgver.tar.gz")
md5sums=("f8a41a19e9bcb5c2a86373e95f252c6f")

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