Couple tidbits;
I'm able to build with just the following makedepends, though my PKGBUILD is slightly different than this one. But mostly similar; as the PKGBUILD is based on mine; and from people whom I used as templates for the previous PKGBUILD.
gendesk
coreutils
findutils
python
ca-certificates
cairo
fontconfig
glib2
krb5
libgcrypt
libselinux
libxcrypt-compat
make
mesa
pam
unzip
util-linux-libs
Do not know if this is the minimal building set; but it is pretty small. Also; in your pkgbuild, the first array of dependencies is enough for me to run matlab without issues. The second array (which I had in the pkgbuild before) seems unneccessary; or at least feature dependent which I did not try. I personally opt to manage dependencies using a metapackage now, since I don't want to reinstall matlab to try new dependencies.
I see that this pkgbuild changes pkgver depending on the installation media. However; it probably won't work for anything 2020> , location of binaries and libraries and their versions are all different. The fixes in the python engine and the package_matlab()
version will fail on most older versions. Since it only is guaranteed to work with 2022a, maybe dynamic pkgver
is not a good idea?
I initially wrote the python spoofing based on some stuff I found online and through trial and effort. I switched methods; instead of making matlab think it's a lower number of python that is being run I just edited so that python engine thinks it supports 3.10. Have not been able to test if it works this way; but the previous spoofing is disabled (python 3.10 changed the way how sys.version_info works so you can't set it to a tuple, and the engine functions uses different methods which is non-trivial to spoof all around.) My solution is in my pkgbuild here.
Also; my suggestion on people with intel gpu, is that the default driver for mesa is iris; but matlab does not work with it. I used to use i956, but since december 2021; it's out of mesa due to being ancient. zink driver seems to work; so you can launch matlab with MESA_DRIVER_OVERRIDE=zink and hardware acceleration works.
Pinned Comments
Rubo commented on 2022-09-25 13:31 (UTC) (edited on 2022-09-25 13:32 (UTC) by Rubo)
Hi, I'm tackling the problem with the add-ons installation, where the installer can't write to
/usr/local/MATLAB/R2022b
. I think we should avoid manualchmod
s orchown
s, as it would be easy to mess up with the permissions, so I created amatlab
group withrwx
permissions, which owns the tree starting at/usr/local/MATLAB/R2022b
. The PKGBUILD sets up the correct permissions, so after installing MATLAB, you should just add yourself to that group, re-login and then you should be able to install add-ons. So far I'm able to start the installer, download the add-on archive, but when I get toPerforming post-installation tasks. This may take a few minutes...
, an error occurs, and the installer logsEnd - Unsuccessful Exception: java.lang.InterruptedException
without further information.If anyone wants to help me resolve this issue, here is the repo: https://github.com/Rubo3/matlab-aur/tree/addons.
Rubo commented on 2022-09-16 13:52 (UTC) (edited on 2022-09-16 20:26 (UTC) by Rubo)
I updated the PKGBUILD to MATLAB R2022b. Sorry it took so long. Here are the main changes:
namcap
(thanks @sukanka), and are now managed via the matlab-meta meta package, now it's really easy to play around with them, as you don't have to rebuild the entire MATLAB package (thanks @bbaserdem). I still don't know the exact dependencies needed by MATLAB, as I don't use all its toolkits and whatnots. As always, please tell me if you find something.install.log
, under the same directory of the PKGBUILD, so that you can check whether something went wrong even if it didn't fail (e.g. when you need a new license or installation key because the major version changed).python-matlabengine
to its own repo, which is built from upstream and works for the latest MATLAB versions. Currently it supports Python 3.9 and 3.10. If you have other needs, you can find the installation instructions here. Since the source files are still provided in your local MATLAB installation under$_instdir/extern/engines/python
, building it and packaging it here was really just a convenience. I would like to know how many users of this PKGBUILD really need to spoof their Python version, so that we can reason about putting back that extra logic in the other PKGBUILD.silverbluep commented on 2020-09-21 16:39 (UTC) (edited on 2021-02-03 18:13 (UTC) by silverbluep)
READ THE README FILE IN THE REPO. NO AUR HELPERS SUPPORTED. ONLY ARCHLINUX AS OS IS SUPPORTED. YOU SHOULD BE BUILDING THIS PACKAGE USING MAKEPKG, NOTHING ELSE WILL BE SUPPORTED. Please only post issues here AFTER you followed the README.md. located at the root of this repo: https://aur.archlinux.org/cgit/aur.git/tree/README.md?h=matlab Due to a lot of comments; my spam filter is removing AUR notifications which keeps me from responding timely to issues in packaging, please don't post if you don't do some troubleshooting yourself. If your skill level is not up to troubleshooting (or following simple instructions as laid out by the readme), just install matlab locally, without using this package.