wok view get-playonlinux/stuff/get-playonlinux @ rev 22824

graveman: change icon for 'about'
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 06 17:19:39 2020 +0100 (2020-02-06)
parents eea42880f1a2
children
line source
1 #!/bin/sh -e
3 PACKAGE="playonlinux"
4 TMP_DIR=/tmp/get-$PACKAGE-$$-$RANDOM
5 CUR_DIR=$(pwd)
6 mkdir -p $TMP_DIR && cd $TMP_DIR
7 URL=http://www.playonlinux.com/$(. /etc/locale.conf ; echo ${LANG%_*})/download.html
8 busybox wget -s $URL || URL=http://www.playonlinux.com/en/download.html
9 URL=$(wget -O - $URL | sed '/z2*"/!d;s/.*ref="\([^"]*\).*/\1/')
10 wget -O - $URL | busybox tar xf -
11 for i in bash wxpython cabextract imagemagick gnupg wine wget icoutils \
12 p7zip-full gnu-netcat grep; do
13 [ -d /var/lib/tazpkg/installed/$i/ ] || tazpkg get-install $i
14 done
15 cd playonlinux
16 su -c ./playonlinux tux
17 cd $CUR_DIR
18 rm -rf $TMP_DIR