mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
735 B
Bash
26 lines
735 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Brian Nguyen <bhnguyen@gmail.com>
|
|
# Original Packager: Tom K <tomk@runbox.com>
|
|
|
|
pkgname=hevea
|
|
pkgver=1.10
|
|
pkgrel=1
|
|
pkgdesc="A quite complete and fast LATEX to HTML translator"
|
|
arch=(i686 x86_64)
|
|
depends=('ocaml')
|
|
license=('GPL')
|
|
url="http://pauillac.inria.fr/~maranget/hevea/"
|
|
install=hevea.install
|
|
source=(http://pauillac.inria.fr/~maranget/$pkgname/distri/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('24a631570bee3cc4b8350e9db39be62b')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
sed -i 's:usr/local:usr:' Makefile
|
|
make || return 1
|
|
|
|
sed -i "s:DESTDIR=.*:DESTDIR=$startdir/pkg:" Makefile config.sh
|
|
make install
|
|
}
|