PKGBUILDs/extra/asymptote/PKGBUILD

27 lines
820 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# Maintainer: Firmicus <francois.archlinux.org>
# Contributor: bender02 at gmx dot com
2009-10-19 03:17:58 +00:00
2009-10-10 02:23:22 +00:00
pkgname=asymptote
pkgver=1.86
pkgrel=1
pkgdesc="A vector graphics language (like metapost)"
2009-10-19 03:17:58 +00:00
arch=('arm')
2009-10-10 02:23:22 +00:00
url="http://asymptote.sourceforge.net/"
license=("GPL3")
depends=('texlive-core' 'gc' 'freeglut' 'gsl' 'fftw')
optdepends=('python: for the xasy GUI'
'pil: "'
'tix: "')
install="texlive.install"
2009-10-19 03:17:58 +00:00
source=(http://downloads.sourceforge.net/sourceforge/asymptote/$pkgname-$pkgver.src.tgz)
md5sums=('0dc9c827a5e6f3577b5bc5966cb90ca8')
2009-10-10 02:23:22 +00:00
build() {
cd $srcdir/$pkgname-$pkgver
./configure --enable-gc=/usr --prefix=/usr \
--with-latex=/usr/share/texmf/tex/latex \
--with-context=/usr/share/texmf/tex/context || return 1
make asy || return 1
make DESTDIR=$pkgdir install-asy || return 1
}