slackbuilds/xap/google_chrome.sh
2018-12-20 22:39:08 +01:00

27 lines
745 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
cp $BUILD_DIR/google-chrome.SlackBuild .
RELEASE=$CHANNEL ./google-chrome.SlackBuild
upgradepkg --install-new --reinstall /tmp/google-chrome-*-$ARCH-*.txz
rm google-chrome.SlackBuild google-chrome-${CHANNEL}_current_$DEBARCH.deb
#/root/clean-tmp.sh