finally fixed appImage scripts

This commit is contained in:
csoler 2018-01-02 11:06:51 +01:00
parent fd25521b8a
commit eef82aa5f0
2 changed files with 5 additions and 4 deletions

View File

@ -6,10 +6,11 @@ ingredients:
sources: sources:
- deb http://archive.ubuntu.com/ubuntu trusty main restricted universe multiverse - deb http://archive.ubuntu.com/ubuntu trusty main restricted universe multiverse
- deb http://archive.ubuntu.com/ubuntu trusty-updates main restricted universe multiverse - deb http://archive.ubuntu.com/ubuntu trusty-updates main restricted universe multiverse
- deb http://deb.torproject.org/torproject.org/ trusty main
ppas: ppas:
- retroshare/testing - retroshare/testing
packages: packages:
- libqt4-svg - libqt5svg5
- tor - tor
- retrotor - retrotor

View File

@ -59,8 +59,8 @@ while [ ${#} -gt 0 ]; do
done done
if test "${useretrotor}" = "true"; then if test "${useretrotor}" = "true"; then
if ! test "${dist}" = "xenial"; then if ! test "${dist}" = "trusty"; then
echo ERROR: retro-tor can only be packaged for xenial for now. echo ERROR: retro-tor can only be packaged for trusty for now.
exit 1; exit 1;
fi fi
gitpath="https://github.com/csoler/RetroShare.git" gitpath="https://github.com/csoler/RetroShare.git"
@ -140,7 +140,7 @@ for i in ${dist}; do
if test ${useretrotor} = "true"; then if test ${useretrotor} = "true"; then
cp ../rules.retrotor debian/rules cp ../rules.retrotor debian/rules
cp ../control.xenial_retrotor debian/control cp ../control.trusty_retrotor debian/control
elif test -f ../control."${i}" ; then elif test -f ../control."${i}" ; then
echo \/\!\\ Using specific control file for distribution "${i}" echo \/\!\\ Using specific control file for distribution "${i}"
cp ../control."${i}" debian/control cp ../control."${i}" debian/control