diff options
author | June McEnroe <june@causal.agency> | 2022-01-17 14:38:56 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-01-17 14:38:56 -0500 |
commit | 48f330a26e04cfcf4ba6183633efbbbefcf859d6 (patch) | |
tree | 5a7b1a646aa9f4020c9838e4f4b94eff6aed89da | |
parent | Add The Galaxy, and the Ground Within (diff) | |
download | src-48f330a26e04cfcf4ba6183633efbbbefcf859d6.tar.gz src-48f330a26e04cfcf4ba6183633efbbbefcf859d6.zip |
Switch to jorts
-rw-r--r-- | install.sh | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/install.sh b/install.sh index ae440bc7..6f4789bb 100644 --- a/install.sh +++ b/install.sh @@ -27,14 +27,10 @@ Linux() { } Darwin() { - port selfupdate - port -N install git mandoc nvi pkgconfig $packages - mkdir -p /opt/local/etc/select/man - printf 'bin/man\nshare/man/man1/man.1\nshare/man/man1/man.1.gz\n' \ - >/opt/local/etc/select/man/base - printf '/usr/bin/man\n/usr/share/man/man1/man.1\n-\n' \ - >/opt/local/etc/select/man/system - port select --set man system + packages=$(echo $packages | sed 's/the_silver_searcher/ag/') + cd git/jorts + git pull + ./Plan -j4 git mandoc nvi $packages | sh } $(uname) |