mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
18 lines
825 B
Bash
18 lines
825 B
Bash
# Maintainer: Geoffroy Carrier <geoffroy.carrier@aur.archlinux.org>
|
|
pkgname=texlive-dot2texi
|
|
pkgver=3.0
|
|
pkgrel=3
|
|
pkgdesc="allows to embed graphs written the DOT (graph) description language directly in LaTeX document"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.fauskes.net/nb/introducing-dot2texi/"
|
|
depends=(texlive-core texlive-latexextra texlive-pstricks dot2tex)
|
|
#texlive-core for xkeyval, texlive-latexextra for moreverb, texlive-pstricks for pstricks
|
|
#I should learn how to write a optdeps sometime...
|
|
source=(http://theory.uwinnipeg.ca/scripts/CTAN/macros/latex/contrib/dot2texi.zip)
|
|
license=('GPL')
|
|
install=texlive.install
|
|
build() {
|
|
local texmf_root="$pkgdir"/usr/share/texmf
|
|
install -D -m644 "$srcdir"/dot2texi/dot2texi.sty "$texmf_root"/tex/latex/dot2texi/dot2texi.sty
|
|
}
|
|
md5sums=('010e981a056c305709686e8b61022c40')
|