forked from Motion-Project/Motion-Project.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmotion_download.html
72 lines (69 loc) · 3.24 KB
/
motion_download.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<link href="motion.png" rel="icon" type="image/png">
<title>Motion</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="motion_stylesheet.css" media="screen">
<script>
function fnc_topnav() {
var x = document.getElementById("id_topnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</head>
<body>
<div class="topnav" id="id_topnav">
<img class="logoimg" src="motion.gif">
<a class="topnav-d" href="https://motion-project.github.io/motion_support.html">Support</a>
<a class="topnav-d" href="https://motion-project.github.io/motion_news.html" >News</a>
<a class="topnav-d" href="https://motion-project.github.io/motion_guide.html" >Documentation</a>
<a class="topnav-d" href="https://motion-project.github.io/motion_download.html">Download</a>
<a class="topnav-d" href="https://motion-project.github.io/index.html">Home</a>
<a class="topnav-m" href="https://motion-project.github.io/index.html">Home</a>
<a class="topnav-m" href="https://motion-project.github.io/motion_download.html">Download</a>
<a class="topnav-m" href="https://motion-project.github.io/motion_guide.html" >Documentation</a>
<a class="topnav-m" href="https://motion-project.github.io/motion_news.html" >News</a>
<a class="topnav-m" href="https://motion-project.github.io/motion_support.html">Support</a>
<a href="javascript:void(0);" class="icon" onclick="fnc_topnav()">☰</a>
</div>
<section class="page-header">
<h1>
Download
</h1>
</section>
<section class="main-content">
<h3><a id="releases" class="anchor" href="#releases" aria-hidden="true">
<span aria-hidden="true" class="octicon octicon-link"></span></a>
Releases
</h3>
<p></p>
The most current release of the Motion application can be found on the
<a href="https://github.com/Motion-Project/motion/releases">releases</a> page.
<p></p>
<h3>
<a id="source-code" class="anchor" href="#source-code" aria-hidden="true">
<span aria-hidden="true" class="octicon octicon-link"></span></a>
Source code
</h3>
<p></p>
The latest source code for Motion is in our github
<a href="https://github.com/Motion-Project/motion">repo</a>.
Instructions for building Motion on various systems is included in the
<a href="motion_build.html">Motion guide</a>.
<p></p>
For users that wish to create their own deb file from the github source code, a build
script is available in the motion-packaging repository which automates the deb creation process.
<p></p>
Download the
<a href="https://raw.githubusercontent.com/Motion-Project/motion-packaging/master/builddeb.sh">script</a>, mark
it as executable, then execute it. The script will identify and report any missing packages and once all the
required packages are installed on the system it will create a deb package.
</section>
</body>
</html>