Created
May 3, 2011 04:47
-
-
Save deontologician/952830 to your computer and use it in GitHub Desktop.
PKGBUILD for mathpartir tex library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=mathpartir | |
pkgver=1.2 | |
pkgrel=2 | |
pkgdesc="Latex package for typesetting type inference rules" | |
arch=(any) | |
url="http://cristal.inria.fr/~remy/latex/" | |
license=('GPL') | |
install=install | |
source=('http://cristal.inria.fr/~remy/latex/mathpartir.dvi' | |
'http://cristal.inria.fr/~remy/latex/mathpartir.sty' | |
'http://cristal.inria.fr/~remy/latex/mathpartir.tex' | |
) | |
build() { | |
cd "$srcdir" | |
local lib="$pkgdir"/usr/share/texmf/tex/latex | |
local doc="$pkgdir"/usr/share/doc/mathpartir | |
install -d "$lib" "$doc" | |
install mathpartir.sty "$lib" | |
install -t "$doc" mathpartir.dvi mathpartir.tex | |
} | |
md5sums=('e25813083139534eb3c2d31b0d4bb4e9' | |
'0a8a87e47a9f3667d7acd7e8f6400355' | |
'15a4979c78d7ae3334d2a5c452cbed7d') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment