-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinstallation.html
More file actions
61 lines (58 loc) · 3.52 KB
/
installation.html
File metadata and controls
61 lines (58 loc) · 3.52 KB
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
<!-- vim: set ts=4 sw=4 tw=0: !-->
<!DOCTYPE html>
<html>
<head>
<title>Celluloid - Installation</title>
<link rel="stylesheet" type="text/css" href="stylesheets/main.css">
<link rel="shortcut icon" href="images/favicon.png">
</head>
<body>
<div class="navbar-bg">
<div class="navbar">
<a class="navitem" href="index.html">
<div class="navitem">
Home
</div>
</a>
<div class="navitem current-navitem">
Installation
</div>
<a class="navitem" href="bug-reports.html">
<div class="navitem">
Bug Reports
</div>
</a>
<a class="navitem" href="faq.html">
<div class="navitem">
FAQ
</div>
</a>
</div>
</div>
<div class="content">
<div class="markdown-heading"><h2 class="heading-element">Packages</h2><a id="user-content-packages" class="anchor" aria-label="Permalink: Packages" href="#packages"><span aria-hidden="true" class="octicon octicon-link"></span></a></div>
<a href="https://repology.org/project/celluloid/versions" rel="nofollow">
<img src="https://camo.githubusercontent.com/c7a659804461bb91c88cc04a2d2ef49329ae75a598edcaf40037bfc74de8153f/68747470733a2f2f7265706f6c6f67792e6f72672f62616467652f766572746963616c2d616c6c7265706f732f63656c6c756c6f69642e7376673f636f6c756d6e733d34" alt="Packaging status" data-canonical-src="https://repology.org/badge/vertical-allrepos/celluloid.svg?columns=4" style="max-width: 100%;">
</a>
<p>Ubuntu users can use
<a href="https://launchpad.net/~xuzhen666/+archive/ubuntu/gnome-mpv" rel="nofollow">this PPA</a> to get
more up-to-date versions of Celluloid.</p>
<div class="markdown-heading"><h2 class="heading-element">Flatpak</h2><a id="user-content-flatpak" class="anchor" aria-label="Permalink: Flatpak" href="#flatpak"><span aria-hidden="true" class="octicon octicon-link"></span></a></div>
<p><a href="https://flatpak.org" rel="nofollow">Flatpak</a> packages support multiple distributions and are sandboxed.
Flatpak 0.9.5+ is recommended for best integration.</p>
<p>Stable releases are hosted on <a href="https://flathub.org" rel="nofollow">Flathub</a>:</p>
<div class="highlight highlight-source-shell"><pre>flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub io.github.celluloid_player.Celluloid</pre></div>
<div class="markdown-heading"><h2 class="heading-element">Snap</h2><a id="user-content-snap" class="anchor" aria-label="Permalink: Snap" href="#snap"><span aria-hidden="true" class="octicon octicon-link"></span></a></div>
<p>Stable releases are hosted on <a href="https://snapcraft.io" rel="nofollow">Snapcraft</a>:</p>
<div class="highlight highlight-source-shell"><pre>sudo snap install celluloid</pre></div>
<div class="markdown-heading"><h2 class="heading-element">Source code</h2><a id="user-content-source-code" class="anchor" aria-label="Permalink: Source code" href="#source-code"><span aria-hidden="true" class="octicon octicon-link"></span></a></div>
<p>Run the following command in the source code directory to build and install:</p>
<div class="highlight highlight-source-shell"><pre>meson setup build <span class="pl-k">&&</span> <span class="pl-c1">cd</span> build <span class="pl-k">&&</span> ninja <span class="pl-k">&&</span> sudo ninja install</pre></div>
</div>
<div class="footer">
Copyright © 2018-2022 gnome-mpv.
This webpage is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
</div>
</body>
</html>