blob: 0ffb5b12054b166a262757132d60856f4f1c154e (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Benjamin van der Burgh <benjaminvdb@gmail.com>
pkgname=octave-hg
pkgver=4.3.0+24010.584971932def
pkgrel=1
pkgdesc="A high-level language, primarily intended for numerical computations."
url="http://www.octave.org"
arch=('i686' 'x86_64')
license=('GPL')
# Some of these may be optional, e.g. arpack, lapack, qhull but if they
# are installed, octave will be linked against them.
depends=('fftw>=3.2.2' 'curl' 'fltk' 'hdf5' 'glpk' 'arpack' 'openmp'
'gl2ps' 'qt4' 'qhull' 'graphicsmagick' 'portaudio' 'mesa'
'suitesparse' 'java-environment' 'qscintilla-qt4')
makedepends=('pcre' 'mercurial' 'gcc-fortran' 'gperf' 'rsync' 'gettext'
'transfig' 'epstool' 'texlive-core' 'icoutils')
optdepends=('texinfo: for help-support in octave'
'gnuplot: alternative plotting')
conflicts=('octave')
provides=("octave=4.2.0")
options=('!emptydirs' '!makeflags')
source=(git://git.sv.gnu.org/gnulib)
md5sums=('SKIP')
_hgroot=http://hg.savannah.gnu.org/hgweb/
_hgrepo=octave
pkgver() {
if [ -d ${_hgrepo} ]; then
cd ${_hgrepo}
hg pull -u
else
hg clone ${_hgroot}${_hgrepo}
fi > /dev/null 2>&1
cd $srcdir/$_hgrepo
_appver=$(awk -F", " '/bugs/ {print $2}' configure.ac|tr -d []|tr - _)
printf "%s%s.%s" "${_appver}" "$(hg log|head -1|cut -d: -f2|tr -d " ")" "$(hg log|head -1|cut -d: -f3)"
}
build() {
[[ -d "$srcdir"/${_hgrepo}-local ]] && rm -rf $srcdir/${_hgrepo}-local
cp -rf "$srcdir"/${_hgrepo} $srcdir/${_hgrepo}-local
cd "$srcdir"/${_hgrepo}-local
./bootstrap --gnulib-srcdir=$srcdir/gnulib
mkdir build
cd build
[[ $CARCH == "x86_64" ]] && _arch=amd64
[[ $CARCH == "i686" ]] && _arch=i386
export LD_PRELOAD=/usr/lib/libGL.so
../configure \
--prefix=/usr --libexecdir=/usr/lib --enable-shared --disable-jit \
--with-umfpack --enable-java --with-hdf5 --without-osmesa \
--with-java-homedir=/usr/lib/jvm/`archlinux-java get` \
--with-java-includedir=/usr/lib/jvm/`archlinux-java get`/include \
--with-java-libdir={/usr/lib/jvm/`archlinux-java get`/lib/${_arch}/server,/usr/lib/jvm/`archlinux-java get`/jre/lib/${_arch}/server} --with-qt=4
export CLASSPATH=.:$CLASSPATH
make
}
check() {
cd "$srcdir"/${_hgrepo}-local/build
make test || true
}
package() {
cd "$srcdir"/${_hgrepo}-local/build
make DESTDIR=${pkgdir} install
# add octave library path to ld.so.conf.d
_appver=$(awk -F", " '/bugs/ {print $2}' ../configure.ac|tr -d []|tr - _)
install -d "${pkgdir}/etc/ld.so.conf.d"
echo "/usr/lib/${_hgrepo}/${_appver}" > "${pkgdir}/etc/ld.so.conf.d/${_hgrepo}.conf"
}
|