Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hsh-maxima
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elc
hsh-maxima
Commits
87f1894d
Commit
87f1894d
authored
4 years ago
by
Lennart Kramer
Browse files
Options
Downloads
Patches
Plain Diff
use variable instead of file
parent
fc9065a9
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
buildscript.sh
+6
-5
6 additions, 5 deletions
buildscript.sh
with
6 additions
and
5 deletions
buildscript.sh
+
6
−
5
View file @
87f1894d
#!/bin/bash
set
-e
echo
${
MAXIMA_VERSION
?Error \
$MAXIMA_VERSION
is not defined
}
\
${
SBCL_VERSION
?Error \
$SBCL_VERSION
is not defined
}
...
...
@@ -12,15 +13,15 @@ apt-get install -y bzip2 make wget python3 gcc texinfo
mkdir
-p
${
SRC
}
wget https://sourceforge.net/projects/maxima/files/Maxima-source/
${
MAXIMA_VERSION
}
-source
/maxima-
${
MAXIMA_VERSION
}
.tar.gz
-O
${
SRC
}
/maxima-
${
MAXIMA_VERSION
}
.tar.gz
wget https://sourceforge.net/projects/sbcl/files/sbcl/
${
SBCL_VERSION
}
/sbcl-
${
SBCL_VERSION
}
-
$
(
cat
/
SBCL_ARCH
)
-linux-binary
.tar.bz2
-O
${
SRC
}
/sbcl-
${
SBCL_VERSION
}
-
$
(
cat
/
SBCL_ARCH
)
-linux
.tar.bz2
wget https://sourceforge.net/projects/sbcl/files/sbcl/
${
SBCL_VERSION
}
/sbcl-
${
SBCL_VERSION
}
-
$
{
SBCL_ARCH
}
-linux-binary
.tar.bz2
-O
${
SRC
}
/sbcl-
${
SBCL_VERSION
}
-
$
{
SBCL_ARCH
}
-linux
.tar.bz2
# Compile sbcl
cd
${
SRC
}
bzip2
-d
sbcl-
${
SBCL_VERSION
}
-
$
(
cat
/
SBCL_ARCH
)
-linux
.tar.bz2
tar
-xf
sbcl-
${
SBCL_VERSION
}
-
$
(
cat
/
SBCL_ARCH
)
-linux
.tar
rm
sbcl-
${
SBCL_VERSION
}
-
$
(
cat
/
SBCL_ARCH
)
-linux
.tar
bzip2
-d
sbcl-
${
SBCL_VERSION
}
-
$
{
SBCL_ARCH
}
-linux
.tar.bz2
tar
-xf
sbcl-
${
SBCL_VERSION
}
-
$
{
SBCL_ARCH
}
-linux
.tar
rm
sbcl-
${
SBCL_VERSION
}
-
$
{
SBCL_ARCH
}
-linux
.tar
ls
cd
sbcl-
${
SBCL_VERSION
}
-
$
(
cat
/
SBCL_ARCH
)
-linux
cd
sbcl-
${
SBCL_VERSION
}
-
$
{
SBCL_ARCH
}
-linux
./install.sh
# Compile maxima
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment