mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
689 B
Bash
23 lines
689 B
Bash
# $Id: PKGBUILD 1604 2009-08-26 11:59:07Z spupykin $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=texvc
|
|
pkgver=1.15.1
|
|
pkgrel=1
|
|
pkgdesc="tex to HTML/MathML/png converter used by mediawiki"
|
|
arch=(i686 x86_64)
|
|
url="http://www.mediawiki.org/"
|
|
license=("GPL")
|
|
depends=(imagemagick ghostscript texlive-core)
|
|
makedepends=(ocaml)
|
|
options=(force)
|
|
source=(http://download.wikimedia.org/mediawiki/1.15/mediawiki-$pkgver.tar.gz)
|
|
md5sums=('834cef60ef3fd47162420fa25abf2dff')
|
|
|
|
build() {
|
|
cd $srcdir/mediawiki-$pkgver/math
|
|
make || return 1
|
|
install -d -m 0755 $pkgdir/usr/bin && \
|
|
install -m 0755 texvc $pkgdir/usr/bin
|
|
}
|