From ddad81e4d8f27799aa2f79c96078c3323d2555a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Mon, 24 Dec 2012 14:04:08 +0100 Subject: build_efl_stable.sh: use bz2 and 1.7.4 --- build_efl_stable.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build_efl_stable.sh b/build_efl_stable.sh index 35acea6..4fce9a3 100755 --- a/build_efl_stable.sh +++ b/build_efl_stable.sh @@ -1,7 +1,7 @@ #! /bin/bash -EFL_VER=1.7.3 -E_VER=0.17.0-omega +EFL_VER=1.7.4 +E_VER=0.17.0 PREFIX=/opt/efl OPTIONS="--disable-doc" SUDO_PASSWD="" @@ -12,11 +12,11 @@ EFL_PKGS="eina eet evas ecore eio embryo edje efreet e_dbus eeze emotion ethumb function e_get() { echo "fetch archives" for pkg in $EFL_PKGS; do - arch=${pkg}-${EFL_VER}.tar.gz + arch=${pkg}-${EFL_VER}.tar.bz2 echo " - $arch" [ -f $arch ] || curl http://download.enlightenment.org/releases/$arch -o $arch || exit 1 done - e_arch=enlightenment-${E_VER}.tar.gz + e_arch=enlightenment-${E_VER}.tar.bz2 echo " - $e_arch" [ -f $e_arch ] || curl http://download.enlightenment.org/releases/$e_arch -o $e_arch || exit 1 } @@ -26,13 +26,13 @@ function e_extract() { for pkg in $EFL_PKGS; do echo " - $arch" [ -d $pkg-${EFL_VER} ] && rm -rf $pkg-${EFL_VER} - arch=${pkg}-${EFL_VER}.tar.gz - tar -xzf $arch || exit 1 + arch=${pkg}-${EFL_VER}.tar.bz2 + tar -xjf $arch || exit 1 done echo " - $e_arch" [ -d enlightenment-${E_VER} ] && rm -rf enlightenment-${E_VER} - e_arch=enlightenment-${E_VER}.tar.gz - tar -xzf $e_arch || exit 1 + e_arch=enlightenment-${E_VER}.tar.bz2 + tar -xjf $e_arch || exit 1 } function e_build() { -- cgit v1.1-2-g2b99