[gtk-builder-win] Add script to install a newer version of automake



commit ceffed4fcd3747bc8bfd031263d9a5daa0c34263
Author: Ignacio Casal Quinteiro <icq gnome org>
Date:   Mon Jul 14 20:48:34 2014 +0200

    Add script to install a newer version of automake
    
    Packages like gtksourceview need a newer version of automake

 win32/libs/4_automake.bat |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)
---
diff --git a/win32/libs/4_automake.bat b/win32/libs/4_automake.bat
new file mode 100644
index 0000000..c43e3e2
--- /dev/null
+++ b/win32/libs/4_automake.bat
@@ -0,0 +1,22 @@
+MODVER=1.11.6
+
+mkdir -p 4_automake
+cd 4_automake
+test -f automake-$MODVER.tar.gz || wget http://ftp.gnu.org/gnu/automake/automake-$MODVER.tar.gz
+gzip -d -f -c automake-$MODVER.tar.gz > automake-$MODVER.tar
+tar -xf automake-$MODVER.tar
+cd automake-$MODVER
+
+
+echo Compile...
+
+# note install in the same prefix as mingw
+./configure --prefix=/mingw
+make clean
+make 2>&1 | tee ../../logs/4_automake-make.log
+make install 2>&1 | tee ../../logs/4_automake-makeinstall.log
+
+
+cd ..
+rm -rf automake-$MODVER
+rm -f automake-$MODVER.tar


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]