Skip to content

Instantly share code, notes, and snippets.

@deontologician
Created May 3, 2011 04:47
Show Gist options
  • Save deontologician/952830 to your computer and use it in GitHub Desktop.
Save deontologician/952830 to your computer and use it in GitHub Desktop.
PKGBUILD for mathpartir tex library
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