summaryrefslogtreecommitdiff
path: root/python2-wxmplot/PKGBUILD
blob: a65ffae0cf057fbd8f3b1397d94796e3574b5f2d (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
31
32
33
34
35
36
37
38
39
40
41
42
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=python2-wxmplot
pkgver=0.9.30
pkgrel=1
pkgdesc='A library for plotting in wxPython using matplotlib'
arch=('any')
url='https://pypi.python.org/pypi/wxmplot/0.9.18'
license=('OSI Approved :: MIT License')
groups=()
depends=(
  'python2'
  'wxpython'
  'python2-matplotlib'
)
makedepends=(
  'python2-setuptools'
)
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
source=(
    "${pkgname}-${pkgver}.tar.gz::https://pypi.python.org/packages/0c/7a/b6744f4ce5aaf28b1411289635b417417238b8b82c633050bbd10ee05a43/${pkgname#*-}-${pkgver}.tar.gz"
)
sha512sums=('dea902e0a2bc615708b1b34455c16480cfdba13aadf31ee4e34a652f5b13facf33e115bf714c81a4cc93e70d2ae27415bcfae2889c71660a848604101bf48d04')

build() {

    cd ${pkgname#*-}-${pkgver}
    python2 setup.py build

}

package() {

    cd ${pkgname#*-}-${pkgver}
    python2 setup.py install --skip-build --root="${pkgdir}" --prefix=/usr

}