-
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
0 parents
commit 3d61210
Showing
10 changed files
with
423 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*.bak | ||
*.exe | ||
*.log | ||
*.zip |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 1.0 (20 Dec 14) | ||
|
||
* 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 |
---|---|---|
@@ -0,0 +1,133 @@ | ||
# Contributing | ||
|
||
Thanks! There are plenty of ways you can help! | ||
|
||
Please take a moment to review this document in order to make the contribution | ||
process easy and effective for everyone involved. | ||
|
||
Following these guidelines helps to communicate that you respect the time of | ||
the developers managing and developing this open source project. In return, | ||
they should reciprocate that respect in addressing your issue or assessing | ||
patches and features. | ||
|
||
## Using the issue tracker | ||
|
||
The link:/issues[issue tracker] is | ||
the preferred channel for [bug reports](#bug-reports), [feature requests](#feature-requests) | ||
and submitting [pull requests](#pull-requests), but please respect the following | ||
restrictions: | ||
|
||
* Please **do not** use the issue tracker for personal support requests. Instead, please use | ||
[Stack Overflow](https://stackoverflow.com/questions/tagged/audacity_installer). | ||
|
||
* Please **do not** derail or troll issues. Keep the discussion on topic and | ||
respect the opinions of others. | ||
|
||
## Bug reports | ||
|
||
A bug is a _demonstrable problem_ that is caused by the code in the repository. | ||
Good bug reports are extremely helpful - thank you! | ||
|
||
Guidelines for bug reports: | ||
|
||
1. **Use the GitHub issue search** — check if the issue has already been | ||
reported. | ||
|
||
2. **Check if the issue has been fixed** — try to reproduce it using the | ||
latest `master` or development branch in the repository. | ||
|
||
3. **Isolate the problem** — ideally create a reduced test | ||
case] and a live example. | ||
|
||
A good bug report shouldn't leave others needing to chase you up for more | ||
information. Please try to be as detailed as possible in your report. What is | ||
your environment? What steps will reproduce the issue? What browser(s) and OS | ||
experience the problem? What would you expect to be the outcome? All these | ||
details will help people to fix any potential bugs. | ||
|
||
Example: | ||
|
||
> Short and descriptive example bug report title | ||
> | ||
> A summary of the issue and the browser/OS environment in which it occurs. If | ||
> suitable, include the steps required to reproduce the bug. | ||
> | ||
> 1. This is the first step | ||
> 2. This is the second step | ||
> 3. Further steps, etc. | ||
> | ||
> `<url>` - a link to the reduced test case | ||
> | ||
> Any other information you want to share that is relevant to the issue being | ||
> reported. This might include the lines of code that you have identified as | ||
> causing the bug, and potential solutions (and your opinions on their | ||
> merits). | ||
|
||
## Feature requests | ||
|
||
Feature requests are welcome. But take a moment to find out whether your idea | ||
fits with the scope and aims of the project. It's up to *you* to make a strong | ||
case to convince the project's developers of the merits of this feature. Please | ||
provide as much detail and context as possible. | ||
|
||
|
||
## Pull requests | ||
|
||
Good pull requests - patches, improvements, new features - are a fantastic | ||
help. They should remain focused in scope and avoid containing unrelated | ||
commits. | ||
|
||
**Please ask first** before embarking on any significant pull request (e.g. | ||
implementing features, refactoring code, porting to a different language), | ||
otherwise you risk spending a lot of time working on something that the | ||
project's developers might not want to merge into the project. | ||
|
||
Please adhere to the coding conventions used throughout a project (indentation, | ||
accurate comments, etc.) and any other requirements (such as test coverage). | ||
|
||
Adhering to the following process is the best way to get your work | ||
included in the project: | ||
|
||
1. [Fork](https://help.github.com/articles/fork-a-repo) the project, clone your | ||
fork, and configure the remotes: | ||
```bash | ||
# Clone your fork of the repo into the current directory | ||
git clone https://github.com/<your-username>/audacity_installer.git | ||
# Navigate to the newly cloned directory | ||
cd audacity_installer | ||
# Assign the original repo to a remote called "upstream" | ||
git remote add upstream https://github.com/rasa/audacity_installer.git | ||
``` | ||
|
||
2. If you cloned a while ago, get the latest changes from upstream: | ||
```bash | ||
$ git checkout master | ||
$ git pull upstream master | ||
``` | ||
3. Create a new topic branch (off the main project development branch) to | ||
contain your feature, change, or fix: | ||
```bash | ||
$ git checkout -b <topic-branch-name> | ||
``` | ||
4. Commit your changes in logical chunks. Please adhere to these | ||
[git commit message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) | ||
or your code is unlikely be merged into the main project. Use Git's | ||
[interactive rebase](https://help.github.com/articles/about-git-rebase) | ||
feature to tidy up your commits before making them public. | ||
|
||
5. Locally merge (or rebase) the upstream development branch into your topic branch: | ||
```bash | ||
$ git pull [--rebase] upstream master | ||
``` | ||
|
||
6. Push your topic branch up to your fork: | ||
```bash | ||
$ git push origin <topic-branch-name> | ||
``` | ||
|
||
7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests) | ||
with a clear title and description. | ||
|
||
**IMPORTANT**: By submitting a patch, you agree to allow the project owners to | ||
license your work under the terms of the [MIT License](/LICENSE). |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2004-2015 Ross Smith II | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
the Software, and to permit persons to whom the Software is furnished to do so, | ||
subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# audacity_installer | ||
|
||
VER?=$(shell cat version.txt) | ||
NSI?=$(wildcard *.nsi) | ||
APP?=$(shell basename *.nsi .nsi) | ||
PREFIX?=$(APP)-$(VER)-win32 | ||
EXE?=$(PREFIX).exe | ||
NSHS?=$(wildcard ../nshlib/*.nsh) | ||
APP_ZIP?=$(PREFIX).zip | ||
SRC_ZIP?=$(PREFIX)-src.zip | ||
APP_FILES=$(EXE) $(wildcard license.txt *.md) | ||
SRC_FILES=$(APP_FILES) $(NSHS) $(wildcard Makefile *.mak *.nsi *.nsh *.sh version.txt) | ||
|
||
ZIP?=zip | ||
ZIP_OPTS?=-9jquX | ||
|
||
ifdef PROGRAMFILES | ||
NSIS_DIR:=$(shell cygpath -m -s "$(PROGRAMFILES)/NSIS" 2>/dev/null) | ||
ifneq ($(wildcard $(NSIS_DIR)/.*),) | ||
NSIS2_DIR:=$(shell cygpath -u "$(NSIS_DIR)" 2>/dev/null) | ||
ifneq ($(wildcard $(NSIS2_DIR)/.*),) | ||
PATH+=:$(NSIS2_DIR) | ||
endif | ||
endif | ||
endif | ||
|
||
all: $(EXE) | ||
|
||
$(EXE): $(NSI) $(NSHS) version.txt | ||
makensis /V4 /O$(APP).log /DPRODUCT_VERSION=$(VER) /DPRODUCT_OUTFILE=$@ $< | ||
chmod a+x *.exe | ||
|
||
$(APP_ZIP): $(APP_FILES) | ||
-rm -f $(APP_ZIP) | ||
${ZIP} ${ZIP_OPTS} $@ $^ | ||
|
||
$(SRC_ZIP): $(SRC_FILES) | ||
-rm -f $(SRC_ZIP) | ||
${ZIP} ${ZIP_OPTS} $@ $^ | ||
|
||
dist: all $(APP_ZIP) $(SRC_ZIP) | ||
|
||
run: all | ||
cmd /c ${EXE} | ||
|
||
run1: all | ||
cmd /c ${EXE} /INSTYPE 1 | ||
|
||
run1s: all | ||
cmd /c ${EXE} /INSTYPE 1 /S | ||
|
||
clean: | ||
rm -f *.exe *.log | ||
|
||
distclean: clean | ||
rm -f $(APP_ZIP) $(SRC_ZIP) | ||
|
||
realclean: clean | ||
|
||
.PHONY: all clean dist distclean realclean run run1 run1s |
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 |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# audacity_installer | ||
|
||
audacity_installer lets you download and install 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# Copyright (c) 2005-2015 Ross Smith II (http://smithii.com). MIT Licensed. |
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 |
---|---|---|
@@ -0,0 +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" |
Oops, something went wrong.