summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChristian Krause <wookietreiber@users.noreply.github.com>2018-03-04 13:04:35 +0100
committerNikolay Tatarinov <5min4eq.unity@gmail.com>2018-03-04 15:04:35 +0300
commitc3e5d9313763cf31149b0a810a772790ac5bd9e2 (patch)
treeec409c2b56ee413e542484a5aade7499b898aecd /docs
parentc818c66b647489ff86ef62f418da08afe3d318f7 (diff)
downloadmill-c3e5d9313763cf31149b0a810a772790ac5bd9e2.tar.gz
mill-c3e5d9313763cf31149b0a810a772790ac5bd9e2.tar.bz2
mill-c3e5d9313763cf31149b0a810a772790ac5bd9e2.zip
adds arch linux package to doc/install (#194)
also adds some headers to distinguish the different installation methods
Diffstat (limited to 'docs')
-rw-r--r--docs/pages/1 - Intro to Mill.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index 453e46a6..b912bf14 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -15,6 +15,18 @@ programming language, and can serve as a replacement for
other language or platform via modules (written in Java or Scala) or through
external subprocesses.
+## Installation
+
+### Arch Linux
+
+Arch Linux has an [AUR package for mill](https://aur.archlinux.org/packages/mill/):
+
+```bash
+pacaur -S mill
+```
+
+### Manual
+
To get started, download Mill and install it into your system via the following
`curl`/`chmod` command:
@@ -22,12 +34,16 @@ To get started, download Mill and install it into your system via the following
sudo curl -L -o /usr/local/bin/mill https://github.com/lihaoyi/mill/releases/download/0.1.4/0.1.4 && sudo chmod +x /usr/local/bin/mill
```
+### Development Releases
+
More recent, unstable versions of Mill are also
[available](https://github.com/lihaoyi/mill/releases/tag/unstable), if you want
to try out the latest features and improvements that are currently in master.
Come by our [Gitter Channel](https://gitter.im/lihaoyi/mill) if you want to ask
questions or say hi!
+## Getting Started
+
The simplest Mill build for a Scala project looks as follows:
```scala