Search Criteria
Package Details: octave-odepkg 0.8.5-1
Git Clone URL: | https://aur.archlinux.org/octave-odepkg.git (read-only) |
---|---|
Package Base: | octave-odepkg |
Description: | A package for solving ordinary differential equations and more. |
Upstream URL: | http://octave.sourceforge.net/odepkg/index.html |
Licenses: | |
Submitter: | airon90 |
Maintainer: | valandil |
Last Packager: | valandil |
Votes: | 6 |
Popularity: | 0.001565 |
First Submitted: | 2013-06-18 09:40 |
Last Updated: | 2015-06-11 20:03 |
Dependencies (2)
- octave>=3.2.0 (octave40, octave-hg)
- gcc-fortran (gcc-fortran-multilib-x32, gcc-fortran-multilib-git, gcc-fortran-git) (make)
Latest Comments
valandil commented on 2017-05-05 18:35
Don't really have time to do it right now. Like I said, patches are welcome.
strugk commented on 2017-05-05 18:34
how is udpating going?
I'd love to see it installing without problems
valandil commented on 2017-04-10 18:20
Sorry for the delay, I haven't had much time to look into this. If I have time, I'll fix this this upcoming weekend, probably by switching to the hg version of odepkg. Patches are welcome of course.
pingplug commented on 2017-03-24 15:24
sorry, it's mercurial, not svn
https://sourceforge.net/p/octave/odepkg/ci/default/tree/
valandil commented on 2017-03-24 14:21
What svn version? Octave's?
pingplug commented on 2017-03-24 06:39
build fail since octave 4.0
use the latest svn version will be OK
KALGAN commented on 2015-03-05 10:05
i modified the PKGBUILD,i have substitute build() with package() but i have an error message yet
ansh_kumar commented on 2015-02-13 13:42
update the PKGBUID
depends=('gcc-fortran')
makedepends=()
optdepends=()
backup=()
options=()
install=$pkgname.install
source=("http://downloads.sourceforge.net/octave/$_pack-$pkgver.tar.gz")
noextract=("$_pack-$pkgver.tar.gz")
md5sums=('aa79d0352d80c15fa0a978a883d492e6')
build() {
cd "$srcdir"
mkdir -p builddir
echo "pkg build -nodeps builddir odepkg-$pkgver.tar.gz" | octave --silent
}
package() {
mkdir -p "$pkgdir/usr/share/octave/packages"
mkdir -p "$pkgdir/usr/lib/octave/packages"
cp builddir/odepkg-$pkgver.tar.gz $pkgdir/usr/share/octave/odepkg.tar.gz
}
donpicoro commented on 2013-09-17 13:46
Hej,
if I use directly your PKGBUILD it doesn't load. If I create PKGBUILD using the helper scripts linked from the wiki:
https://github.com/drizzd/octave-forge-archlinux#readme
It works like a charm.
The generated PKGBUILD looks like this: [relevant part]
build() {
cd "$srcdir"
mkdir -p builddir
octave -q -f --eval "pkg build -verbose -nodeps builddir $_archive"
}
package() {
mkdir -p "$pkgdir/usr/share/octave/packages"
mkdir -p "$pkgdir/usr/lib/octave/packages"
cp "$srcdir/builddir/$_archive" "$pkgdir/usr/share/octave/$_pack.tar.gz"
}
so may want to update yours, or not. Just saying.
Cheers.