Riffstation Trial

Informatie

Creator Bericht
Quentin PÂRIS Anonymous

Warning

This installer is a beta script. It means that it might not work as expected

Informatie

Platforms:
Downloads: 8682
Wine: 1.7.17

Feedbacks

Omschrijving

Riffstation is a practice app for guitarists and musicians.

Schermafdrukken

Miniature

Broncode

#!/bin/bash
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Riffstation"
PREFIX="Riffstation"
EDITOR="Riffstation"
GAME_URL="http://www.riffstation.com/"
AUTHOR="Quentin PÂRIS"
 
# Starting the script
POL_SetupWindow_Init
POL_SetupWindow_SetID 2131
 
# Starting debugging API
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Setting Wine Version
WORKING_WINE_VERSION="1.7.17"
 
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
 
# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
# Choose between Downloading client or using local one
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
 
 
# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
 
# Downloading client or choosing existing one
mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        # Downloading client
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA"
        POL_Download "http://www.riffstation.com/RiffstationTrial.exe" "c1abbcdc69dc561045634f0bb08ceed7"
        SETUP_EXE="$PWD/RiffstationTrial.exe"
else
        # Asking for client exe
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
fi
POL_Wine "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"
 
# Making shortcut
POL_Shortcut "Riffstation.exe" "Riffstation"
 
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Bericht
Dadu042 Donderdag 12 Maart 2020 om 20:20
Dadu042

Bericht

App is not avaiable anymore (according the web site), and the download link is dead.

Antwoorden

Quentin PÂRIS Vrijdag 4 Juli 2014 om 16:48
Quentin PÂRIS Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Ajout d'un message pendant l'installation

Differences

@@ -46,6 +46,7 @@
         SETUP_EXE="$APP_ANSWER"
 fi
 POL_Wine_WaitBefore "$TITLE" 
+
 POL_Wine "$SETUP_EXE"
 POL_Wine_WaitExit "$TITLE"
  

New source code

#!/bin/bash
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Riffstation"
PREFIX="Riffstation"
EDITOR="Riffstation"
GAME_URL="http://www.riffstation.com/"
AUTHOR="Quentin PÂRIS"
 
# Starting the script
POL_SetupWindow_Init
POL_SetupWindow_SetID 2131
 
# Starting debugging API
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Setting Wine Version
WORKING_WINE_VERSION="1.7.17"
 
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
 
# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
# Choose between Downloading client or using local one
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
 

# Downloading client or choosing existing one
mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        # Downloading client
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA"
        POL_Download "http://www.riffstation.com/RiffstationTrial.exe" "c1abbcdc69dc561045634f0bb08ceed7"
        SETUP_EXE="$PWD/RiffstationTrial.exe"
else
        # Asking for client exe
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
fi
POL_Wine_WaitBefore "$TITLE" 

POL_Wine "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"
 
# Making shortcut
POL_Shortcut "Riffstation.exe" "Riffstation"
 
POL_SetupWindow_Close
exit 0

Antwoorden

Aangepast door Tinou

Quentin PÂRIS Vrijdag 4 Juli 2014 om 16:45
Quentin PÂRIS Anonymous

Information

This update has been approved by the team.

Differences

@@ -0,0 +1,58 @@
+#!/bin/bash
+ 
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+TITLE="Riffstation"
+PREFIX="Riffstation"
+EDITOR="Riffstation"
+GAME_URL="http://www.riffstation.com/"
+AUTHOR="Quentin PÂRIS"
+ 
+# Starting the script
+POL_SetupWindow_Init
+POL_SetupWindow_SetID 2131
+ 
+# Starting debugging API
+POL_Debug_Init
+ 
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+ 
+# Setting Wine Version
+WORKING_WINE_VERSION="1.7.17"
+ 
+# Setting prefix path
+POL_Wine_SelectPrefix "$PREFIX"
+ 
+# Downloading wine if necessary and creating prefix
+POL_System_SetArch "auto"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+ 
+# Choose between Downloading client or using local one
+POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
+ 
+ 
+# Set Graphic Card information keys for wine
+POL_Wine_SetVideoDriver
+ 
+# Downloading client or choosing existing one
+mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA"
+if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
+        # Downloading client
+        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA"
+        POL_Download "http://www.riffstation.com/RiffstationTrial.exe" "c1abbcdc69dc561045634f0bb08ceed7"
+        SETUP_EXE="$PWD/RiffstationTrial.exe"
+else
+        # Asking for client exe
+        cd "$HOME"
+        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+        SETUP_EXE="$APP_ANSWER"
+fi
+POL_Wine "$SETUP_EXE"
+POL_Wine_WaitExit "$TITLE"
+ 
+# Making shortcut
+POL_Shortcut "Riffstation.exe" "Riffstation"
+ 
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Riffstation"
PREFIX="Riffstation"
EDITOR="Riffstation"
GAME_URL="http://www.riffstation.com/"
AUTHOR="Quentin PÂRIS"
 
# Starting the script
POL_SetupWindow_Init
POL_SetupWindow_SetID 2131
 
# Starting debugging API
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Setting Wine Version
WORKING_WINE_VERSION="1.7.17"
 
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
 
# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
# Choose between Downloading client or using local one
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
 
 
# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
 
# Downloading client or choosing existing one
mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        # Downloading client
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA"
        POL_Download "http://www.riffstation.com/RiffstationTrial.exe" "c1abbcdc69dc561045634f0bb08ceed7"
        SETUP_EXE="$PWD/RiffstationTrial.exe"
else
        # Asking for client exe
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
fi
POL_Wine "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"
 
# Making shortcut
POL_Shortcut "Riffstation.exe" "Riffstation"
 
POL_SetupWindow_Close
exit 0

Antwoorden