Advertisement
Guest User

latex-make

a guest
Dec 13th, 2011
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.70 KB | None | 0 0
  1. # Maintainer: Paulus Cyril <paulus.cyril@gmail.com>
  2. pkgname=latex-make
  3. pkgver=2.1.16
  4. pkgrel=1
  5. pkgdesc="A collection of LaTeX packages, scipts and Makefile fragments that allows to easily compile LaTeX documents."
  6. arch=('any')
  7. url="https://gforge.inria.fr/projects/latex-utils/"
  8. license=('GPL')
  9. depends=('make' 'texlive-core' 'texlive-latexextra')
  10. source=(https://gforge.inria.fr/frs/download.php/29233/$pkgname-$pkgver.tar.gz)
  11. md5sums=('34df2e212735eb0052cf915b531ecd6e')
  12. sha256sums=('8cc91dd934c973d601a2500590874bf36c020f19167e2f153db969f74e1eebe7')
  13.  
  14. build() {
  15.   cd "$srcdir/$pkgname-$pkgver"
  16.   make
  17. }
  18.  
  19. package() {
  20.   cd "$srcdir/$pkgname-$pkgver"
  21.  
  22.   make prefix=/usr DESTDIR="$pkgdir" install
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement