install wine function added and tested
This commit is contained in:
parent
e2db2449e2
commit
8b7d26305a
|
@ -22,13 +22,8 @@ function main(){
|
||||||
rmdir_if_exist $WINE_PATH
|
rmdir_if_exist $WINE_PATH
|
||||||
|
|
||||||
RESOURCES_PATH="$SCR_PATH/resources"
|
RESOURCES_PATH="$SCR_PATH/resources"
|
||||||
echo "$RESOURCES_PATH"
|
|
||||||
|
|
||||||
pathfile="$CACHE_PATH/fuck.jpg"
|
install_wine34
|
||||||
md5="b71c05c238f2cdb979e650ecb1d62bba"
|
|
||||||
link="https://www.dropbox.com/s/61hn7c9oezw0k75/salamKhoviefuckthisshit.jpg?dl=1"
|
|
||||||
filename="fuck.jpg"
|
|
||||||
download_component $pathfile $md5 $link $filename
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,6 +47,15 @@ function warning(){
|
||||||
setup_log "$@"
|
setup_log "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function install_wine34(){
|
||||||
|
local filename="wine-3.4.tgz"
|
||||||
|
local filepath="$CACHE_PATH/$filename"
|
||||||
|
local filemd5="72b485c28e40bba2b73b0d4c0c29a15f"
|
||||||
|
local filelink="http://bit.ly/2Sh9idu"
|
||||||
|
download_component $filepath $filemd5 $filelink $filename
|
||||||
|
tar -xzvf $filepath -C $WINE_PATH 1>/dev/null
|
||||||
|
}
|
||||||
|
|
||||||
#parameters is [PATH] [CheckSum] [URL] [FILE NAME]
|
#parameters is [PATH] [CheckSum] [URL] [FILE NAME]
|
||||||
function download_component(){
|
function download_component(){
|
||||||
local tout=0
|
local tout=0
|
||||||
|
|
Loading…
Reference in New Issue