headless
This commit is contained in:
parent
675f566e61
commit
961f61dc15
1 changed files with 9 additions and 7 deletions
|
@ -5,18 +5,20 @@ BUILD_DIR=${BUILD_DIR:=/home/installs/mirrors/slackware64-current/extra/google-c
|
|||
ARCH=${ARCH:=$(uname -m)}
|
||||
case $ARCH in
|
||||
"i?86")
|
||||
ARCH=i386
|
||||
;;
|
||||
DEBARCH=i386
|
||||
;;
|
||||
"x86_64")
|
||||
ARCH=amd64
|
||||
;;
|
||||
DEBARCH=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
|
||||
[ -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
|
||||
|
||||
[ "x$1" == "x--install" ] && upgradepkg --install-new /tmp/google-chrome-*-$ARCH-*.txz
|
||||
upgradepkg --install-new /tmp/google-chrome-*-$ARCH-*.txz
|
||||
|
||||
rm google-chrome-${CHANNEL}_current_$DEBARCH.deb
|
||||
|
|
Loading…
Add table
Reference in a new issue