summaryrefslogtreecommitdiffstats
path: root/build_efl_stable.sh
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-12-24 14:04:08 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-12-24 14:04:08 +0100
commitddad81e4d8f27799aa2f79c96078c3323d2555a2 (patch)
tree333c0e05a9e78eb9200a7351c7ce82135980bf04 /build_efl_stable.sh
parent1733b72dc182eefc16495ab4a60fb3037509d7c1 (diff)
downloadbin-ddad81e4d8f27799aa2f79c96078c3323d2555a2.zip
bin-ddad81e4d8f27799aa2f79c96078c3323d2555a2.tar.gz
build_efl_stable.sh: use bz2 and 1.7.4
Diffstat (limited to 'build_efl_stable.sh')
-rwxr-xr-xbuild_efl_stable.sh16
1 files 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() {