20 lines
562 B
Bash
20 lines
562 B
Bash
# Template file for 'xdot'
|
|
pkgname=xdot
|
|
version=20140618
|
|
revision=1
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools git"
|
|
makedepends="graphviz pygtk python-setuptools"
|
|
depends="${makedepends}"
|
|
noarch="yes"
|
|
pycompile_module="xdot.py"
|
|
short_desc="Interactive viewer for Graphviz dot files"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-3"
|
|
homepage="https://code.google.com/p/jrfonseca/wiki/XDot"
|
|
|
|
do_fetch() {
|
|
local url="git://github.com/jrfonseca/xdot.py"
|
|
msg_normal "Fetching source from $url ...\n"
|
|
git clone ${url} xdot-${version}
|
|
}
|