Riffstation Trial
Informations
| Creator | Message | 
|---|---|
| Quentin PÂRIS   
 | WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms:   Feedbacks0 1 DescriptionRiffstation is a practice app for guitarists and musicians. ScreenshotsSource 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 | 
Contributions
Filters:
Contribute| Member | Message | 
| Dadu042 | Thursday 12 March 2020 at 20:20 | 
| Dadu042   
 | MessageApp is not avaiable anymore (according the web site), and the download link is dead. Replies | 
| Quentin PÂRIS | Friday 4 July 2014 at 16:48 | 
| Quentin PÂRIS   
 | WarningThis update has not been approved yet by the team. MessageAjout 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 0RepliesEdited by Tinou | 
| Quentin PÂRIS | Friday 4 July 2014 at 16:45 | 
| Quentin PÂRIS   
 | InformationThis 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 0Replies | 
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com
 Install this program
 Install this program                        