|
From: Eduardo O. <edu...@gm...> - 2021-12-23 02:42:55
|
Hi list,
I am on Debian and I am trying to use Maxima from git.
If I run
cd ~/bigsrc/maxima/
git reset
./bootstrap
./configure --help
./configure
make
make check
sudo make install
the "make install" installs the directories demo/, doc/, share/, src/,
tests/, and xmaxima/ inside this directory:
/usr/local/share/maxima/branch_5_45_base_309_gea23a96f9/
How can I make it use this directory
/usr/local/share/maxima/
or this one
/usr/local/share/maxima/5.45/
instead of the one with the very long name? I found these lines in
~/bigsrc/maxima/Makefile.in,
verpkglibdir = $(pkglibdir)/@VERSION@
verpkglibexecdir = $(libexecdir)/@PACKAGE@/@VERSION@
verpkgdatadir = $(pkgdatadir)/@VERSION@
and i saw that they becomes these ones in ~/bigsrc/maxima/Makefile:
verpkglibdir = $(pkglibdir)/branch_5_45_base_309_gea23a96f9
verpkglibexecdir = $(libexecdir)/maxima/branch_5_45_base_309_gea23a96f9
verpkgdatadir = $(pkgdatadir)/branch_5_45_base_309_gea23a96f9
but I couldn't find a clean way to change the @VERSION@...
Thanks in advance! =)
Eduardo Ochs
http://angg.twu.net/#eev
http://angg.twu.net/math-b.html
|