diff options
author | June McEnroe <june@causal.agency> | 2022-01-02 20:26:23 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-01-02 20:26:23 -0500 |
commit | d37a3260697efbf6d8fa4d7c1eb0bbcbb1b6a55f (patch) | |
tree | b1c9bddcb42f7c3760522b907ac67ac8a20d7cb9 | |
parent | Update GPL header template copyright years (diff) | |
download | src-d37a3260697efbf6d8fa4d7c1eb0bbcbb1b6a55f.tar.gz src-d37a3260697efbf6d8fa4d7c1eb0bbcbb1b6a55f.zip |
Remove attempt to automatically install MacPorts
It didn't really work on a new machine, and the version needs to be updated. I'll just do it manually.
Diffstat (limited to '')
-rw-r--r-- | install.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/install.sh b/install.sh index 9e18c6bf..c3ec75e3 100644 --- a/install.sh +++ b/install.sh @@ -26,21 +26,7 @@ Linux() { sudo pacman -Sy --needed bc ctags gdb openssh vi $packages } -installMacPorts() { - xcode-select --install - xcodebuild -license - dir=MacPorts-2.6.3 - tar=${dir}.tar.bz2 - curl -O "https://distfiles.macports.org/MacPorts/${tar}" - tar -x -f $tar - (cd $dir && ./configure) - make -C $dir - sudo make -C $dir install - rm -fr $tar $dir -} - Darwin() { - [ -d /opt/local ] || installMacPorts sudo /opt/local/bin/port selfupdate sudo /opt/local/bin/port -N install git mandoc nvi pkgconfig $packages sudo mkdir -p /opt/local/etc/select/man |