17 lines
551 B
Plaintext
17 lines
551 B
Plaintext
# INSTALL
|
|
DISTFILE="https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb"
|
|
BUILD_DIR="/var/tmp/$PKGNAME.build"
|
|
case "$ACTION" in
|
|
post)
|
|
# Actions to execute before the package files are unpacked.
|
|
mkdir -p $BUILD_DIR
|
|
xbps-uhelper fetch "${DISTFILE}>$BUILD_DIR/$PKGNAME.deb"
|
|
# Things that have to happen no matter what
|
|
cd $BUILD_DIR
|
|
ar x $PKGNAME.deb
|
|
tar xf data.tar.xz --wildcards './opt/google/chrome/libwidevine*'
|
|
mv opt/google/chrome/libwidevine* /usr/lib/chromium
|
|
rm -r $BUILD_DIR
|
|
;;
|
|
esac
|