blob: 84f298fb1f608753d165011c0fe03e4f8f648594 (
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
|
# Contributor: Trizen <echo dHJpemVuQHByb3Rvbm1haWwuY29tCg== | base64 -d>
_pkgname='xdot.py'
pkgname=xdot-git
pkgver=1.2.r7.g6f0a5cc
pkgrel=1
pkgdesc="Interactive viewer for Graphviz dot files (git version)"
arch=('any')
url="https://github.com/jrfonseca/xdot.py"
license=('LGPL2.1')
makedepends=('git')
depends=('graphviz' 'python' 'gtk3' 'python-gobject' 'python-cairo' 'python-setuptools' 'python-graphviz' 'python-numpy')
provides=('xdot')
conflicts=('xdot')
source=('git+https://github.com/jrfonseca/xdot.py.git')
sha512sums=('SKIP')
pkgver() {
cd "$_pkgname"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd $_pkgname
python setup.py install -O1 --root="${pkgdir}" --prefix=/usr
}
|