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

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents e2ec61dec110
children c07aaa614a02
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 | tar xzf -
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