diff options
Diffstat (limited to 'examples/lieer')
-rw-r--r-- | examples/lieer | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/lieer b/examples/lieer new file mode 100644 index 0000000..6c90e64 --- /dev/null +++ b/examples/lieer | |||
@@ -0,0 +1,21 @@ | |||
1 | # lieer -*- bash-ts -*- | ||
2 | |||
3 | SOURCE=https://github.com/gauteh/lieer | ||
4 | |||
5 | APT_DEPENDENCIES=( | ||
6 | python3 | ||
7 | libnotmuch-dev | ||
8 | # hopefully pip will install the rest | ||
9 | ) | ||
10 | |||
11 | # Don't error when we don't have a virtualenv. | ||
12 | export PIP_REQUIRE_VIRTUALENV=false | ||
13 | |||
14 | # Plan | ||
15 | |||
16 | install_deps | ||
17 | repo_pull | ||
18 | repo_ready | ||
19 | |||
20 | with_repo pip3 install --user . | ||
21 | |||