From 55d863adb8548bfc193f5d8b6ebfe0101187a1bc Mon Sep 17 00:00:00 2001 From: Kyodev Date: Mon, 3 Jul 2017 01:33:59 +0200 Subject: [PATCH 1/2] fix url for functions.sh * the url for script functions.sh was changed, see [functions.sh](https://github.com/AppImage/AppImages/raw/master/functions.sh) * for information, **bug** on appImage: functions.sh don't build on debian, see [pull request](https://github.com/AppImage/AppImages/pull/252) then release-tool don't work. the PR was accepted, and it is **important** for debian platforms --- AppImage-Recipe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppImage-Recipe.sh b/AppImage-Recipe.sh index 2707fe96b..7f301f44f 100755 --- a/AppImage-Recipe.sh +++ b/AppImage-Recipe.sh @@ -36,7 +36,7 @@ LOWERAPP="$(echo "$APP" | tr '[:upper:]' '[:lower:]')" VERSION="$2" mkdir -p $APP.AppDir -wget -q https://github.com/probonopd/AppImages/raw/master/functions.sh -O ./functions.sh +wget -q https://github.com/AppImage/AppImages/raw/master/functions.sh -O ./functions.sh . ./functions.sh LIB_DIR=./usr/lib From 0d8a3fb389ab1464431cfb2ee2e50fe1cf848616 Mon Sep 17 00:00:00 2001 From: Kyodev Date: Mon, 3 Jul 2017 03:22:18 +0200 Subject: [PATCH 2/2] add 32bits architecture --- AppImage-Recipe.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AppImage-Recipe.sh b/AppImage-Recipe.sh index 7f301f44f..0472cccdf 100755 --- a/AppImage-Recipe.sh +++ b/AppImage-Recipe.sh @@ -42,6 +42,8 @@ wget -q https://github.com/AppImage/AppImages/raw/master/functions.sh -O ./funct LIB_DIR=./usr/lib if [ -d ./usr/lib/x86_64-linux-gnu ]; then LIB_DIR=./usr/lib/x86_64-linux-gnu +elif [ -d ./usr/lib/i386-linux-gnu ]; then + LIB_DIR=./usr/lib/i386-linux-gnu fi cd $APP.AppDir