slackbuilds/xap/update-google_chrome.sh
Gwenhael Le Moine 854cb30a48 add the_silver_searcher a.k.a. ag, a replacement for ack and grep
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
2012-12-12 13:46:06 +01:00

22 lines
604 B
Bash
Executable file

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