getThunderbird 1.9.0

This commit is contained in:
kyodev 2017-12-18 21:57:34 +01:00
parent 943cfa59f5
commit 5561162a37
2 changed files with 17 additions and 5 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
version=1.8.0
date="13/12/2017"
version=1.9.0
date="18/12/2017"
projet="simpledeb"
contact="IRC freenode ##sdeb ou https://framagit.org/kyodev/kyopages/issues/"
script="getThunderbird"
@ -14,7 +14,9 @@ script="getThunderbird"
# détection architecture système, assigne $fu_archi: linux|linux64
# return 1 on unknown architecture
# remarque, debian: dpkg --print-architecture affiche i386
f__architecture(){ # 4/12/2017 SPÉCIFIQUE
f__architecture(){ # 14/12/2017 SPÉCIFIQUE
x_architecture=1
case "$(uname -m)" in
amd64 | x86_64 )
fu_archi="linux64";;
@ -374,7 +376,7 @@ f_tb_get_versions(){ # 5/12/2017
}
# installation Thunderbird, $1 canal, $2 manuel, $3 archive
f_tb_install(){ # 4/12/2017
f_tb_install(){ # 18/12/2017
[ "$EUID" -eq 0 ] || f__error "vous devez être ROOT pour installer Thunderbird"
local versArchive dirTemp fileTemp prefixe canal="$1"
@ -382,7 +384,7 @@ f_tb_install(){ # 4/12/2017
versArchive="$(sed -E 's/.*thunderbird-(.*)\.tar\.bz2.*$/\1/' <<< $(basename $3))"
f__info "installation manuelle dans $canal de thunderbird version $versArchive ($3)"
dirTemp="$(dirname $3)/$script-$RANDOM"
fileTemp="$(basename $3)"
fileTemp=$( dirname $3 )/$( basename $3 )
mkdir -p "$dirTemp"
else
f__info "installation thunderbird-$canal"

View File

@ -1,5 +1,15 @@
# changelog getThunderbird
## getThunderbird 1.9.0 18/12/2017
* fix: install manuelle, bug potentiel
## getThunderbird 1.8.1 15/12/2017
* syncro f__architecture
## getThunderbird 1.8.0 13/12/2017
* révision: f__wget_test