-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·93 lines (76 loc) · 2.84 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
---
layout: landing
---
<section class="header">
<div class="one-third column">
<img src="images/[email protected]" width="273" height="350" title="Anarchy Tools Logo" id="logo">
</div>
<div class="two-thirds column">
<h1 class="remove-bottom" style="margin-top: 80px">Anarchy Tools</h1>
<h6>an opinionatedly, unopinionated set of tools for building Swift projects</h6>
<nav id="links" class="offset-by-three columns">
<a href="#install">install</a> |
<a href="#docs">docs</a> |
<a href="https://github.com/anarchytools">source</a>
</nav>
</div>
</section>
<hr>
<section class="info">
<div class="five columns">
<p id="pitch">The Anarchy Tools toolset provides a straight forward way to build your Swift tools
and libraries and manage their dependencies. It takes a non-nonsense approach to getting things
done. Best of all, it's built right on top of the
<a href="https://github.com/apple/swift-llbuild">swift-llbuild</a> foundation and plain
simple git.</p>
</div>
<div class="seven columns">
<pre>
(package
:name "simple-sample"
:tasks { :build { :name "sample"
:tool "atllbuild"
:sources ["src/**.swift"]
:output-type "executable" }})</pre>
</div>
</section>
<hr>
<section class="info">
<div class="three columns offset-by-one"><h3>Install (OSX)</h3></div>
<div class="eight columns">
<a name="install"></a>
<ol>
<li>Install <a href="http://brew.sh">homebrew</a></li>
<li>Add our tap: <br /><code>brew tap AnarchyTools/homebrew</code></li>
<li>Install our tools: <br /><code>brew install atbuild atpm</code></li>
</div>
</section>
<hr>
<section class="info">
<div class="three columns offset-by-one"><h3>Install (Debian)</h3></div>
<div class="eight columns">
<a name="install"></a>
<ol>
<li>Install our repository:<br /><code>curl -s https://packagecloud.io/install/repositories/anarchytools/AT/script.deb.sh | bash</code></li>
<li>Install our tools: <br /><code>apt-get install atbuild atpm</code></li>
</div>
</section>
<hr>
<section class="info">
<div class="four columns"><h3>Documentation</h3></div>
<div class="eight columns">
<a name="docs"></a>
<p>Our documentation is like us. Disorganized, but awesome.
</p>
<div>
<span>Read about:</span>
<ul class="links">
{% for page in site.pages %}
{% if page.tags contains "docs" %}
<li><a href="{{ page.url }}">{{ page.name | replace: '.md', '' }}</a></li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
</section>