Package Details: scilab 2025.0.0-1

Git Clone URL: https://aur.archlinux.org/scilab.git (read-only, click to copy)
Package Base: scilab
Description: A scientific software package for numerical computations
Upstream URL: https://www.scilab.org
Keywords: algorithm analysis data development gui mathematics model modelica numeric numerical science scientific sdk simulation visualization
Licenses: BSD-3-Clause, GPL-2.0-or-later, CeCILL-2.1
Submitter: td123
Maintainer: carlosal1015
Last Packager: carlosal1015
Votes: 86
Popularity: 0.003491
First Submitted: 2011-12-07 20:36 (UTC)
Last Updated: 2024-10-26 02:56 (UTC)

Pinned Comments

carlosal1015 commented on 2024-11-17 18:01 (UTC)

Open issue https://gitlab.com/scilab/scilab/-/issues/16429

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 .. 29 Next › Last »

JoseskVolpe commented on 2022-08-14 03:21 (UTC)

Seems like source-code was removed from SciLab page, i had to use the Github repo:


diff --git a/PKGBUILD b/PKGBUILD
index 69e5d00..9606584 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -26,7 +26,7 @@ depends=('suitesparse>=4.4.1' 'arpack' 'fftw' 'eigen'
 makedepends=('java-environment=8' 'ant>=1.9.0'
              'ocaml-findlib' 'ocaml-num' 'gcc-fortran'
              'time')
-source=("${url}/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/scilab/scilab/archive/refs/tags/6.1.1.tar.gz"
         "${pkgname}-jogl-2.3.2.patch"
         "${pkgname}-strict-jar.patch"
         "${pkgname}-LD_LIBRARY_PATH.patch"
@@ -35,7 +35,7 @@ source=("${url}/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz"
         "libxml.patch"
         "hdf5_18_api.patch"
          )
-sha256sums=('e51347638bd385c276c930785a1f9f079ae7eaa78c62a0eca1dc7e6142434207'
+sha256sums=('83555679b7d56df4aedad60678d97794cc5aefcda8b57206899016b5702607a4'
             '7b7b5609ee36b6f8d801eeb3899cd62cc889c2038e0e1616b7640f9b8a0424b0'
             '38aa094951338fa1d267dc6f397552e175213b0f8ba7b35727c178607861f6dd'
             'a39277cb8cfc3d7929c73ce6d707dc24e3df4b8d8f2d587f075efebda79ff4db'
@@ -45,7 +45,7 @@ sha256sums=('e51347638bd385c276c930785a1f9f079ae7eaa78c62a0eca1dc7e6142434207'
             'f781c2919a0c14be5deed3a8b8866addd8de1171a06aacb96ef1e19535d0988e')

 prepare(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd "${srcdir}/${pkgname}-${pkgver}/scilab"

   # https://codereview.scilab.org/#/c/17530/
   patch -p2 < "${srcdir}"/${pkgname}-jogl-2.3.2.patch
@@ -64,7 +64,7 @@ prepare(){
 }

 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd "${srcdir}/${pkgname}-${pkgver}/scilab"

   ./configure \
     --prefix=/usr \
@@ -90,7 +90,7 @@ build() {
 }

 package(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd "${srcdir}/${pkgname}-${pkgver}/scilab"

   make DESTDIR="${pkgdir}" install
   make DESTDIR="${pkgdir}" install-data install-html

However, i got into a build error lol <quote> configure: error: Could not find or use the Java package/jar lucene-core used by Lucene (looking for package org.apache.lucene.LucenePackage) </quote>

If i manage to fix that, i'll mail you

bartus commented on 2022-03-14 10:36 (UTC)

Sorry lads, I'm at the Polish Ukraine border helping allocate refugees. Expect no update until this hell is over, wish us luck. Have no time nor access to my rig and AUR keys to test/post updates. If you have a patch, ping me on email - I'll add you as co-maintainer. Posted with my old script - https://github.com/bartoszek/aur-post

bartus commented on 2021-07-22 10:09 (UTC) (edited on 2021-07-22 10:10 (UTC) by bartus)

Please report issues and patches at https://github.com/bartoszek/AUR-scilab

Vial commented on 2021-05-12 21:54 (UTC)

I'm facing the same compilation errors as @Cryen. I guess the only changes required are line 85: mat_uint32_t* rowIndexes = (mat_uint32_t*)MALLOC(sizeof(mat_uint32_t) * nonZeros); line 68: mat_uint32_t* colIndexes = (mat_uint32_t*)MALLOC(sizeof(mat_uint32_t) * (pSparse->getRows() + 1));

minhaj.sixbyte commented on 2021-04-25 18:41 (UTC)

Hey TheGoliath,

Your pinned comment, link to your github repo is broken. 404 Github page not found error.

Cryen commented on 2021-02-01 22:16 (UTC) (edited on 2021-02-01 22:17 (UTC) by Cryen)

I have issues building it with yay

src/cpp/GetSparseVariable.cpp:106:22: error: invalid conversion from ‘int*’ to ‘mat_uint32_t*’ {aka ‘unsigned int*’} [-fpermissive]

Same thing in 109

jventas commented on 2021-01-04 16:53 (UTC)

@Xwang

I got the same error you mentioned. I solved it replacing the line --with-modelica by --without-modelica in the PKGBUILD file.