mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
17 lines
393 B
Bash
17 lines
393 B
Bash
pkgname=mimetex
|
|
pkgver=1.70
|
|
pkgrel=1
|
|
pkgdesc="tex to gif converter"
|
|
arch=(i686 x86_64)
|
|
url="http://www.forkosh.com/mimetex.html"
|
|
license=('GPL')
|
|
depends=()
|
|
source=(http://arch.pp.ru/~sergej/dl/mimetex.zip)
|
|
md5sums=('c73b1dde70526edb137daaf72189024b')
|
|
|
|
build() {
|
|
cd $srcdir
|
|
|
|
gcc -DAA mimetex.c gifsave.c -lm -o mimetex.cgi && \
|
|
install -D -m0755 mimetex.cgi $pkgdir/usr/bin/mimetex.cgi
|
|
}
|