Created
August 27, 2015 14:10
-
-
Save nkigen/6bfdde8c2e33fb90cdf8 to your computer and use it in GitHub Desktop.
Revisions
-
nkigen created this gist
Aug 27, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ myprefix=YOUR_CUSTOM_LOCATION wget http://ftp.gnu.org/gnu/m4/m4-1.4.17.tar.gz wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz wget http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz wget http://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz gzip -dc m4-1.4.17.tar.gz | tar xvf - gzip -dc autoconf-2.69.tar.gz | tar xvf - gzip -dc automake-1.15.tar.gz | tar xvf - gzip -dc libtool-2.4.6.tar.gz | tar xvf - cd m4-1.4.17 ./configure -C --prefix=$myprefix && make && make install cd ../autoconf-2.69 ./configure -C --prefix=$myprefix && make && make install cd ../automake-1.15 ./configure -C --prefix=$myprefix && make && make install cd ../libtool-2.4.6 ./configure -C --prefix=$myprefix && make && make install