-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
203 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# 2.0.6 (20-Dec-2014) | ||
|
||
* Initial release | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,75 @@ | ||
# audacity_installer | ||
|
||
audacity_installer downloads and installs Audacity and the following | ||
Audacity plugins: | ||
|
||
1. LADSPA plug-ins | ||
2. LAME plug-in | ||
3. FFMPEG plug-in | ||
|
||
audacity_installer looks in the directory where audacity_installer.exe is for | ||
any files it needs before attempting to download them. If it does download a | ||
file, it will attempt to save a copy of the file in this same directory. | ||
|
||
audacity_installer adds the installation directory (typically | ||
`C:\Program Files\Audacity`) to your PATH environment variable. | ||
|
||
Note: you are responsible to verify that each program you install using | ||
audacity_installer is designed to work in your environment. | ||
If you are unsure, then please visit http://audacity.sourceforge.net/ for more | ||
information. | ||
|
||
## Usage | ||
|
||
```` | ||
audacity_installer [options] | ||
Options: | ||
/S Install the application silently with the default options selected | ||
/D=path Install into the directory 'path' (default is | ||
%ProgramFiles%\Audacity) | ||
/INSTYPE n Where n is a number between 1 and 9: | ||
1: Audacity and all plug-ins | ||
2: Audacity only | ||
3: LADSPA plug-ins | ||
4: LAME plug-in | ||
5: FFMPEG plug-in | ||
The following options are planned to be implemented in a future version: | ||
/SAVEDIR d Save downloaded files in directory d | ||
/PROXY Set proxy settings | ||
/RETRIES n Number of times to retry each download before reporting failure | ||
(default: 5) | ||
/ALLUSERS Install icons for all users | ||
This is the default if the user is an administrator | ||
/USER Install icons for the current user only | ||
This is the default if the user is not an administrator | ||
/VERSION Show the version and quit | ||
/? Show this help message and quit | ||
If you encounter any errors, please post your installation log to smithii.com. | ||
The installation log will normally be created in | ||
C:\Program Files\Audacity\install.log | ||
```` | ||
|
||
## Contributing | ||
|
||
To contribute to this project, please see [CONTRIBUTING.md](CONTRIBUTING.md). | ||
|
||
## Bugs | ||
|
||
To view existing bugs, or report a new bug, please see the [issues](/issues) page for this project. | ||
|
||
## License | ||
|
||
This project is [MIT licensed](LICENSE). | ||
|
||
## Changelog | ||
|
||
Please see [CHANGELOG.md](CHANGELOG.md) for the version history for this project. | ||
|
||
## Contact | ||
|
||
This project was originally developed by [Ross Smith II](mailto:[email protected]). | ||
Any enhancements and suggestions are welcome. | ||
# audacity_installer | ||
|
||
audacity_installer downloads and installs Audacity and the following | ||
Audacity plugins: | ||
|
||
1. LADSPA plug-ins | ||
2. LAME plug-in | ||
3. FFMPEG plug-in | ||
|
||
audacity_installer looks in the directory where audacity_installer.exe is for | ||
any files it needs before attempting to download them. If it does download a | ||
file, it will attempt to save a copy of the file in this same directory. | ||
|
||
audacity_installer adds the installation directory (typically | ||
`C:\Program Files\Audacity`) to your PATH environment variable. | ||
|
||
Note: you are responsible to verify that each program you install using | ||
audacity_installer is designed to work in your environment. | ||
If you are unsure, then please visit http://audacity.sourceforge.net/ for more | ||
information. | ||
|
||
## Usage | ||
|
||
```` | ||
audacity_installer [options] | ||
Options: | ||
/S Install the application silently with the default options selected | ||
/D=path Install into the directory 'path' (default is | ||
%ProgramFiles%\Audacity) | ||
/INSTYPE n Where n is a number between 1 and 9: | ||
1: Audacity and all plug-ins | ||
2: Audacity only | ||
3: LADSPA plug-ins | ||
4: LAME plug-in | ||
5: FFMPEG plug-in | ||
The following options are planned to be implemented in a future version: | ||
/SAVEDIR d Save downloaded files in directory d | ||
/PROXY Set proxy settings | ||
/RETRIES n Number of times to retry each download before reporting failure | ||
(default: 5) | ||
/ALLUSERS Install icons for all users | ||
This is the default if the user is an administrator | ||
/USER Install icons for the current user only | ||
This is the default if the user is not an administrator | ||
/VERSION Show the version and quit | ||
/? Show this help message and quit | ||
If you encounter any errors, please post your installation log to smithii.com. | ||
The installation log will normally be created in | ||
C:\Program Files\Audacity\install.log | ||
```` | ||
|
||
## Contributing | ||
|
||
To contribute to this project, please see [CONTRIBUTING.md](CONTRIBUTING.md). | ||
|
||
## Bugs | ||
|
||
To view existing bugs, or report a new bug, please see the [issues](/issues) page for this project. | ||
|
||
## License | ||
|
||
This project is [MIT licensed](LICENSE). | ||
|
||
## Changelog | ||
|
||
Please see [CHANGELOG.md](CHANGELOG.md) for the version history for this project. | ||
|
||
## Contact | ||
|
||
This project was originally developed by [Ross Smith II](mailto:[email protected]). | ||
Any enhancements and suggestions are welcome. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,93 @@ | ||
# Copyright (c) 2005-2015 Ross Smith II (http://smithii.com). MIT Licensed. | ||
|
||
!define AUDACITY_VER "2.0.6" | ||
!define AUDACITY_EXE "audacity-win-${AUDACITY_VER}.exe" | ||
!define AUDACITY_URL "http://downloads.sourceforge.net/project/audacity/audacity/${AUDACITY_VER}/${AUDACITY_EXE}" | ||
|
||
# http://downloads.sourceforge.net/project/audacity/audacity/2.0.6/audacity-win-2.0.6.exe | ||
|
||
!define LADSPA_VER "0.4.15" | ||
!define LADSPA_EXE "LADSPA_plugins-win-${LADSPA_VER}.exe" | ||
!define LADSPA_URL "http://downloads.sourceforge.net/project/audacity/audacity-beta/1.3.2/${LADSPA_EXE}" | ||
|
||
# http://downloads.sourceforge.net/project/audacity/audacity-beta/1.3.2/LADSPA_plugins-win-0.4.15.exe | ||
|
||
!define LAME_VER "3.99.3" | ||
!define LAME_EXE "Lame_v${LAME_VER}_for_Windows.exe" | ||
!define LAME_URL "http://lame.buanzo.org/${LAME_EXE}" | ||
|
||
# Source: http://lame.buanzo.org/#lamewindl | ||
# Referer: http://lame.buanzo.org/ | ||
# http://lame.buanzo.org/Lame_v3.99.3_for_Windows.exe | ||
|
||
!define FFMPEG_VER "2.2.2" | ||
!define FFMPEG_EXE "ffmpeg-win-${FFMPEG_VER}.exe" | ||
!define FFMPEG_URL "http://lame3.buanzo.com.ar/${FFMPEG_EXE}" | ||
|
||
# Source: http://lame.buanzo.org/#lamewindl | ||
# Referer: http://lame.buanzo.org/ | ||
# http://lame3.buanzo.com.ar/ffmpeg-win-2.2.2.exe | ||
|
||
!define PRODUCT_NAME "audacity_installer" | ||
!define PRODUCT_DIR "Audacity" | ||
#!define PRODUCT_VERSION "1.0" | ||
!define PRODUCT_DESC "Audacity Freeware Installer ${PRODUCT_VERSION}" | ||
!define PRODUCT_TRADEMARKS "Audacity™ is a trademark of Dominic Mazzoni (http://audacity.sourceforge.net/copyright)" | ||
|
||
!addincludedir "../nsislib" | ||
!addincludedir "nsislib" | ||
|
||
!include "config.nsh" | ||
!include "DumpLog.nsh" | ||
|
||
#!undef PRODUCT_EXE | ||
#!undef PRODUCT_FILE | ||
#!define NO_DESKTOP_ICONS | ||
#!define ADD_INSTDIR_TO_PATH | ||
|
||
#!define COPYDIR "$EXEDIR" | ||
#!define NOEXTRACTPATH | ||
#!define UNZIP_DIR "$INSTDIR" | ||
|
||
InstType "Audacity ${AUDACITY_VER} and all plug-ins" | ||
InstType "Audacity ${AUDACITY_VER} only" | ||
InstType "LADSPA plug-ins ${LADSPA_VER}" | ||
InstType "LAME plug-in ${LAME_VER}" | ||
InstType "FFMPEG plug-in ${LAME_VER}" | ||
InstType "None" | ||
|
||
!include "common.nsh" | ||
|
||
Section "Audacity ${AUDACITY_VER}" | ||
SectionIn 1 2 | ||
|
||
!insertmacro Download "${AUDACITY_URL}" "" "" | ||
StrCpy $1 "$INSTDIR\${AUDACITY_EXE}" | ||
ExecWait $1 $0 | ||
SectionEnd | ||
|
||
Section "LADSPA Plugins ${LADSPA_VER}" | ||
SectionIn 1 3 | ||
|
||
!insertmacro Download "${LADSPA_URL}" "" "" | ||
StrCpy $1 "$INSTDIR\${LADSPA_EXE}" | ||
ExecWait $1 $0 | ||
SectionEnd | ||
|
||
Section "LAME Plugin ${LAME_VER}" | ||
SectionIn 1 4 | ||
|
||
!insertmacro Download "${LAME_URL}" "" "http://lame.buanzo.org/" | ||
StrCpy $1 "$INSTDIR\${LAME_EXE}" | ||
ExecWait $1 $0 | ||
SectionEnd | ||
|
||
Section "FFMPEG Plugin ${FFMPEG_VER}" | ||
SectionIn 1 5 | ||
|
||
!insertmacro Download "${FFMPEG_URL}" "" "http://lame.buanzo.org/" | ||
StrCpy $1 "$INSTDIR\${FFMPEG_EXE}" | ||
ExecWait $1 $0 | ||
SectionEnd | ||
|
||
# !insertmacro DumpLogMacro "2 3" "DumpLog" "url" | ||
# Copyright (c) 2005-2015 Ross Smith II (http://smithii.com). MIT Licensed. | ||
|
||
!define AUDACITY_VER "2.0.6" | ||
!define AUDACITY_EXE "audacity-win-${AUDACITY_VER}.exe" | ||
!define AUDACITY_URL "http://downloads.sourceforge.net/project/audacity/audacity/${AUDACITY_VER}/${AUDACITY_EXE}" | ||
|
||
# http://downloads.sourceforge.net/project/audacity/audacity/2.0.6/audacity-win-2.0.6.exe | ||
|
||
!define LADSPA_VER "0.4.15" | ||
!define LADSPA_EXE "LADSPA_plugins-win-${LADSPA_VER}.exe" | ||
!define LADSPA_URL "http://downloads.sourceforge.net/project/audacity/audacity-beta/1.3.2/${LADSPA_EXE}" | ||
|
||
# http://downloads.sourceforge.net/project/audacity/audacity-beta/1.3.2/LADSPA_plugins-win-0.4.15.exe | ||
|
||
!define LAME_VER "3.99.3" | ||
!define LAME_EXE "Lame_v${LAME_VER}_for_Windows.exe" | ||
!define LAME_URL "http://lame.buanzo.org/${LAME_EXE}" | ||
|
||
# Source: http://lame.buanzo.org/#lamewindl | ||
# Referer: http://lame.buanzo.org/ | ||
# http://lame.buanzo.org/Lame_v3.99.3_for_Windows.exe | ||
|
||
!define FFMPEG_VER "2.2.2" | ||
!define FFMPEG_EXE "ffmpeg-win-${FFMPEG_VER}.exe" | ||
!define FFMPEG_URL "http://lame3.buanzo.com.ar/${FFMPEG_EXE}" | ||
|
||
# Source: http://lame.buanzo.org/#lamewindl | ||
# Referer: http://lame.buanzo.org/ | ||
# http://lame3.buanzo.com.ar/ffmpeg-win-2.2.2.exe | ||
|
||
!define PRODUCT_NAME "audacity_installer" | ||
!define PRODUCT_DIR "Audacity" | ||
#!define PRODUCT_VERSION "1.0" | ||
!define PRODUCT_DESC "Audacity Freeware Installer ${PRODUCT_VERSION}" | ||
!define PRODUCT_TRADEMARKS "Audacity™ is a trademark of Dominic Mazzoni (http://audacity.sourceforge.net/copyright)" | ||
|
||
!addincludedir "../nsislib" | ||
!addincludedir "nsislib" | ||
|
||
!include "config.nsh" | ||
!include "DumpLog.nsh" | ||
|
||
#!undef PRODUCT_EXE | ||
#!undef PRODUCT_FILE | ||
#!define NO_DESKTOP_ICONS | ||
#!define ADD_INSTDIR_TO_PATH | ||
|
||
#!define COPYDIR "$EXEDIR" | ||
#!define NOEXTRACTPATH | ||
#!define UNZIP_DIR "$INSTDIR" | ||
|
||
InstType "Audacity ${AUDACITY_VER} and all plug-ins" | ||
InstType "Audacity ${AUDACITY_VER} only" | ||
InstType "LADSPA plug-ins ${LADSPA_VER}" | ||
InstType "LAME plug-in ${LAME_VER}" | ||
InstType "FFMPEG plug-in ${LAME_VER}" | ||
InstType "None" | ||
|
||
!include "common.nsh" | ||
|
||
Section "Audacity ${AUDACITY_VER}" | ||
SectionIn 1 2 | ||
|
||
!insertmacro Download "${AUDACITY_URL}" "" "" | ||
StrCpy $1 "$INSTDIR\${AUDACITY_EXE}" | ||
ExecWait $1 $0 | ||
SectionEnd | ||
|
||
Section "LADSPA Plugins ${LADSPA_VER}" | ||
SectionIn 1 3 | ||
|
||
!insertmacro Download "${LADSPA_URL}" "" "" | ||
StrCpy $1 "$INSTDIR\${LADSPA_EXE}" | ||
ExecWait $1 $0 | ||
SectionEnd | ||
|
||
Section "LAME Plugin ${LAME_VER}" | ||
SectionIn 1 4 | ||
|
||
!insertmacro Download "${LAME_URL}" "" "http://lame.buanzo.org/" | ||
StrCpy $1 "$INSTDIR\${LAME_EXE}" | ||
ExecWait $1 $0 | ||
SectionEnd | ||
|
||
Section "FFMPEG Plugin ${FFMPEG_VER}" | ||
SectionIn 1 5 | ||
|
||
!insertmacro Download "${FFMPEG_URL}" "" "http://lame.buanzo.org/" | ||
StrCpy $1 "$INSTDIR\${FFMPEG_EXE}" | ||
ExecWait $1 $0 | ||
SectionEnd | ||
|
||
# !insertmacro DumpLogMacro "2 3" "DumpLog" "url" |
Oops, something went wrong.