-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
202 lines (164 loc) · 6.19 KB
/
index.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gama Repository</title>
<link rel="icon" href="https://gama-platform.org/img/gama-logo.png">
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
padding: 0;
background-color: #f5f5f5;
}
h1 {
color: #333;
}
p {
color: #555;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background-color: #fff;
padding: 10px;
margin: 10px 0;
border: 1px solid #ddd;
border-radius: 5px;
}
a {
color: #0074d9;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
pre {
background-color: #f8f8f8;
border: 1px solid #ddd;
border-radius: 5px;
padding: 5px;
overflow-x: auto;
}
pre .copy-button {
float: right;
}
pre code {
display: block;
font-family: Monaco, monospace;
}
/* Copy button styles */
.copy-button {
background-color: #0074d9;
color: #fff;
border: none;
padding: 5px 10px;
border-radius: 5px;
cursor: pointer;
}
.copy-button:hover {
background-color: #0056b3;
}
hr {
border: none;
border-top: 1px solid #ddd;
margin: 20px 0;
}
.file-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.file-list-item {
background-color: #fff;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
</style>
</head>
<body>
<h1>Debian Repository</h1>
<p>Welcome to the Debian repository of the <a href="https://gama-platform.org">Gama platform</a>.<br>
Below is a list of the latest debian/ubuntu packages available for download.</p>
<br/>
<ul>
<li>
<a href="./GAMA_2024.10.0_Linux.deb.html">gama-platform</a>
<br>Architecture: amd64
<br>Version: 0.0.0-SNAPSHOT
<br>Description: GAMA is a modeling and simulation development environment for building spatially explicit agent-based simulations
<br>Filename: <a href="./GAMA_2024.10.0_Linux.deb.html">GAMA_2024.10.0_Linux.deb</a>
</li>
<li>
<a href="./GAMA_2024.10.0_Linux_with_JDK.deb.html">gama-platform-jdk</a>
<br>Architecture: amd64
<br>Version: 0.0.0-SNAPSHOT
<br>Description: GAMA is a modeling and simulation development environment for building spatially explicit agent-based simulations
<br>Filename: <a href="./GAMA_2024.10.0_Linux_with_JDK.deb.html">GAMA_2024.10.0_Linux_with_JDK.deb</a>
</li>
</ul>
<br/>
<p>You can install them with the following command</p>
<pre><code>sudo apt install <PackageName></code></pre>
<p>For instance</p>
<pre><code>sudo apt install gama-platform</code></pre>
<p>If you prefer to download a specific version of the package, go to the All Versions section, click on the version to download and install it this way</p>
<pre><code>sudo apt install ./<path to the downloaded package></code></pre>
<hr>
<h2>Setups Instructions</h2>
<p>Follow these steps to add the repository:</p>
<pre>
<button class="copy-button" onclick="copyCode()">Copy</button><code class="copied-code">
sudo -i
apt update
apt install ca-certificates
echo "deb [trusted=yes] https://ppa.gama-platform.org ./" | tee -a /etc/apt/sources.list</code>
</pre>
<hr>
<h2>alpha packages</h2>
<p>The following apt packages can be installed the same way as the usual ones, however these are unstable and thus not recommended</p>
<ul>
<li>
<a href="./GAMA_2025.01.0_Linux_07.01.25_ce09147.deb.html">gama-platform-alpha</a>
<br>Architecture: amd64
<br>Version: 0.0.0-SNAPSHOT
<br>Description: GAMA is a modeling and simulation development environment for building spatially explicit agent-based simulations
<br>Filename: <a href="./GAMA_2025.01.0_Linux_07.01.25_ce09147.deb.html">GAMA_2025.01.0_Linux_07.01.25_ce09147.deb</a>
</li>
<li>
<a href="./GAMA_2025.01.0_Linux_with_JDK_07.01.25_ce09147.deb.html">gama-platform-jdk-alpha</a>
<br>Architecture: amd64
<br>Version: 0.0.0-SNAPSHOT
<br>Description: GAMA is a modeling and simulation development environment for building spatially explicit agent-based simulations
<br>Filename: <a href="./GAMA_2025.01.0_Linux_with_JDK_07.01.25_ce09147.deb.html">GAMA_2025.01.0_Linux_with_JDK_07.01.25_ce09147.deb</a>
</li>
</ul>
<hr>
<h2>All Versions</h2>
<div class="file-list">
$
<div class="file-list-item"><a href="./GAMA_2024.10.0_Linux.deb.html">GAMA_2024.10.0_Linux.deb</a><br></div>
$
<div class="file-list-item"><a href="./GAMA_2024.10.0_Linux_with_JDK.deb.html">GAMA_2024.10.0_Linux_with_JDK.deb</a><br></div>
$
<div class="file-list-item"><a href="./GAMA_2025.01.0_Linux_07.01.25_ce09147.deb.html">GAMA_2025.01.0_Linux_07.01.25_ce09147.deb</a><br></div>
$
<div class="file-list-item"><a href="./GAMA_2025.01.0_Linux_with_JDK_07.01.25_ce09147.deb.html">GAMA_2025.01.0_Linux_with_JDK_07.01.25_ce09147.deb</a><br></div>
</div>
<script>
function copyCode() {
const codeElement = document.querySelector('.copied-code');
const textArea = document.createElement('textarea');
textArea.value = codeElement.textContent;
document.body.appendChild(textArea);
textArea.select();
document.execCommand('copy');
document.body.removeChild(textArea);
alert('Code copied to clipboard!');
}
</script>
</body>
</html>