Skip to content

Commit

Permalink
Update for libautoconf ncurses and README (innerlee#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamerlin authored Sep 20, 2020
1 parent dcec28f commit 1a8fc75
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ Updated: July 8, 2020

### tools

- [autoconf](https://www.gnu.org/software/autoconf/) (2.69)
- depends on: `m4`, `perl`
- install script: [`./zzautoconf.sh`](zzautoconf.sh)
- [ccache](https://ccache.dev/) (3.7.6)
- install script: [`./zzccache.sh`](zzccache.sh)
- [cmake](https://cmake.org/) (3.16.0)
Expand Down
5 changes: 3 additions & 2 deletions zzlibautoconf.sh → zzautoconf.sh
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
#!/bin/bash
# install libautoconf
# install autoconf
set -e

ROOTDIR=${ZZROOT:-$HOME/app}
NAME="libautoconf"
NAME="autoconf"
TYPE=".tar.gz"
FILE="$NAME$TYPE"
DOWNLOADURL="http://ftp.gnu.org/gnu/autoconf/autoconf-latest.tar.gz"
echo $NAME will be installed in "$ROOTDIR"
echo Dependency: m4, perl

mkdir -p "$ROOTDIR/downloads"
cd "$ROOTDIR"
Expand Down
2 changes: 1 addition & 1 deletion zzncurses.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ROOTDIR=${ZZROOT:-$HOME/app}
NAME="ncurses"
TYPE=".tar.gz"
FILE="$NAME$TYPE"
DOWNLOADURL="ftp://ftp.invisible-island.net/ncurses/ncurses.tar.gz"
DOWNLOADURL="https://ftp.gnu.org/gnu/ncurses/ncurses-6.2.tar.gz"
echo $NAME will be installed in "$ROOTDIR"

mkdir -p "$ROOTDIR/downloads"
Expand Down

0 comments on commit 1a8fc75

Please sign in to comment.