blob: 16a575aaf5be2b651bee46144e13c5b5d68cdf00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: Majorana Oedipus <majoranaoedipus@posteo.org>
# Contributor: Maximilian Stein <theoddbird@posteo.org>
# Contributor: Thomas S Hatch <thatch45@gmail.com>
# Contributor: Hannes Rist <cowider@gmail.com>
# Contributor: ackalker <a.c.kalker@gmail.com>
pkgname=lush
pkgver=1.2.1
pkgrel=3
pkgdesc="An object-oriented programming language designed for researchers, experimenters, and engineers interested in large-scale numerical and graphic applications."
changelog="lush.changelog"
arch=('x86_64')
url="http://lush.sourceforge.net"
license=('GPL')
depends=('binutils')
optdepends=('gsl' 'lapack' 'sdl' 'opencv' 'alsa-lib' 'libxft')
options=('!libtool')
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
sha256sums=('1423085ef7c4ed83374333ba7a552e7f5f35add8db0c2478c8b00c96931ad8c9')
prepare() {
patch -p1 -i $srcdir/../$pkgname-$pkgver.patch
}
build() {
cd "$srcdir/$pkgname"
./configure LIBS=-lz X_EXTRA_LIBS=-lfontconfig --prefix=/usr --with-x
make DESTDIR="$pkgdir"/ world
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir"/ install
}
|