mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
17 lines
491 B
Bash
17 lines
491 B
Bash
|
# Maintainer: Geoffroy Carrier <geoffroy.carrier@aur.archlinux.org>
|
||
|
pkgname=dot2tex
|
||
|
pkgver=2.8.4
|
||
|
pkgrel=1
|
||
|
pkgdesc="Graphviz to LaTeX converter"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.fauskes.net/code/dot2tex/"
|
||
|
depends=('pyparsing' 'graphviz')
|
||
|
source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz)
|
||
|
license=('other:"MIT"')
|
||
|
build()
|
||
|
{
|
||
|
cd "$srcdir/$pkgname-$pkgver" || return 1
|
||
|
python setup.py install --root="$pkgdir" || return 1
|
||
|
}
|
||
|
md5sums=('e63d164fad5722290646cb200dcfcb61')
|