wok diff get-google-chrome/stuff/get-google-chrome @ rev 18730

Quote root dir in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 20 15:13:45 2015 +0100 (2015-12-20)
parents 3dcafc5547ae
children 427ce0d8b056
line diff
     1.1 --- a/get-google-chrome/stuff/get-google-chrome	Mon Nov 22 19:12:12 2010 +0000
     1.2 +++ b/get-google-chrome/stuff/get-google-chrome	Sun Dec 20 15:13:45 2015 +0100
     1.3 @@ -3,7 +3,7 @@
     1.4  
     1.5  PACKAGE="google-chrome-unstable"
     1.6  DEBPKG="${PACKAGE}_current_i386.deb"
     1.7 -URL="http://dl.google.com/linux/direct/$DEBPKG"
     1.8 +URL="https://dl.google.com/linux/direct/$DEBPKG"
     1.9  CUR_DIR=$(pwd)
    1.10  TEMP_DIR=/tmp/$PACKAGE-$$
    1.11  ROOT=
    1.12 @@ -36,7 +36,7 @@
    1.13  cd $TEMP_DIR
    1.14  
    1.15  # Download the file
    1.16 -wget $URL 
    1.17 +wget --no-check-certificate $URL 
    1.18  if [ ! -f $DEBPKG ]; then
    1.19  	cd $CUR_DIR
    1.20  	rm -rf $TEMP_DIR
    1.21 @@ -61,7 +61,7 @@
    1.22  VERSION="$VERSION"
    1.23  CATEGORY="non-free"
    1.24  SHORT_DESC="The web browser from Google."
    1.25 -DEPENDS="gtk+ GConf lzma flash-plugin bash xdg-utils xorg-libXss cups libjpeg62"
    1.26 +DEPENDS="gtk+ GConf lzma bash xdg-utils xorg-libXss cups libjpeg62"
    1.27  WEB_SITE="http://www.google.com/chrome/"
    1.28  
    1.29  post_install()