1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
Instruction to install DrGeo in Cuis-Smalltalk
# 1. Set up your Cuis-Smalltalk dev environment
mkdir Cuis
cd Cuis
# Install Cuis image and packages
git clone https://github.com/hilaire/cuis-xp.git
git clone --depth 1 https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev.git
cd Cuis-Smalltalk-Dev
./clonePackageRepos.sh
./pullAllRepos.sh
# 2. Install VM
wget -O cogspur.tgz https://github.com/OpenSmalltalk/opensmalltalk-vm/releases/download/202112201228/squeak.cog.spur_linux64x64.tar.gz
tar -zxvf cogspur.tgz
mv ./sqcogspur64linuxht ./cogspur
# 3. Start the image, update it and save it
../cogspur/squeak Cuis6.0-5069
# 4. Fetch the Dr. Geo repository
cd Cuis/Cuis-Smalltalk-Dev
bzr branch lp:drgeo
# 5. Install Dr. Geo
./cogspur/squeak Cuis6.0-5069 -s drgeo/srcCuis/DrGeo.pck.st
# A new image drgeo.image is build
In the image execute "DrGeoSystem beDevelopment", then "DrGeo new"
|