File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed
Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ sudo apt-get update
2929
3030sudo apt-get install -y libncurses-dev libxpm-dev libxaw7-dev \
3131 libtiff4-dev libpng-dev libgif-dev autoconf \
32- automake texinfo make
32+ automake texinfo make git
3333
3434# Build Emacs.
3535
5252 make install
5353 rm $PREFIX /bin/emacs
5454done
55+
56+ # Install cask.
57+
58+ CASK_DIR=$HOME /.cask
59+
60+ if [ -d $CASK_DIR ]
61+ then
62+ cd $CASK_DIR
63+ git pull
64+ else
65+ git clone https://github.com/cask/cask $CASK_DIR
66+ fi
67+
68+ cd $PROJECT_ROOT
69+
70+ export PATH=$PATH :$HOME /.cask/bin:$EMACS_DIR /emacs-24.3/bin:$EMACS_DIR /emacs-24.4/bin:$EMACS_DIR /emacs-24.5/bin
71+
72+ for VERSION in ${EMACS_VERSIONS[@]}
73+ do
74+ EMACS=$VERSION cask install
75+ EMACS=$VERSION cask update
76+ done
You can’t perform that action at this time.
0 commit comments