slackbuilds/xap/update-google_chrome.sh
Gwenhael Le Moine af485c01df cleanup after
2015-07-04 13:35:07 +02:00

26 lines
637 B
Bash
Executable file

#!/bin/sh
BUILD_DIR=${BUILD_DIR:=/home/installs/mirrors/slackware64-current/extra/google-chrome}
ARCH=${ARCH:=$(uname -m)}
case $ARCH in
"i?86")
DEBARCH=i386
;;
"x86_64")
DEBARCH=amd64
;;
esac
CHANNEL=${CHANNEL:=stable}
cd $BUILD_DIR
[ -e google-chrome-${CHANNEL}_current_$ARCH.deb ] && rm google-chrome-${CHANNEL}_current_$DEBARCH.deb
wget -c --no-check-certificate https://dl.google.com/linux/direct/google-chrome-${CHANNEL}_current_$DEBARCH.deb
RELEASE=$CHANNEL ./google-chrome.SlackBuild
upgradepkg --install-new /tmp/google-chrome-*-$ARCH-*.txz
rm google-chrome-${CHANNEL}_current_$DEBARCH.deb
/root/clean-tmp.sh