-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: falkTX <falktx@falktx.com>
- Loading branch information
Showing
4 changed files
with
157 additions
and
9 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
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,21 +1,26 @@ | ||
build/ | ||
man/*.1 | ||
.lock* | ||
.stamp_* | ||
.DS_Store | ||
__pycache__ | ||
*.dll | ||
*.pyc | ||
*.pkg | ||
android/.server/ | ||
android/.client/ | ||
codeBlocks | ||
/android/.server/ | ||
/android/.client/ | ||
/build/ | ||
/man/*.1 | ||
|
||
# common release files | ||
/destdir/ | ||
|
||
# macos release files | ||
macos/package.xml | ||
macos/package-welcome.txt | ||
/macos/package.xml | ||
/macos/package-welcome.txt | ||
|
||
# windows release files | ||
windows/inno/version.iss | ||
windows/inno/win32 | ||
windows/inno/win64 | ||
/innosetup/ | ||
/is.exe | ||
/windows/inno/version.iss | ||
/windows/inno/win32 | ||
/windows/inno/win64 |
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,49 @@ | ||
#include "version.iss" | ||
|
||
[Setup] | ||
AppName=JACK2 | ||
AppPublisher=jackaudio.org | ||
AppPublisherURL=https://github.com/jackaudio/jack2/ | ||
AppSupportURL=https://github.com/jackaudio/jack2/issues/ | ||
AppUpdatesURL=https://github.com/jackaudio/jack2-releases/releases/ | ||
AppVersion={#VERSION} | ||
DefaultDirName={commonpf32}\JACK2 | ||
DisableDirPage=yes | ||
DisableWelcomePage=no | ||
LicenseFile=..\..\COPYING | ||
OutputBaseFilename=jack2-win32-{#VERSION} | ||
OutputDir=. | ||
UsePreviousAppDir=no | ||
|
||
[Types] | ||
Name: "full"; Description: "Full installation"; | ||
Name: "custom"; Description: "Custom installation"; Flags: iscustom; | ||
|
||
[Components] | ||
Name: jackserver; Description: "JACK Server and tools"; Types: full custom; Flags: fixed; | ||
Name: dev; Description: "Developer resources"; Types: full; | ||
|
||
[Files] | ||
; icon | ||
Source: "jack.ico"; DestDir: "{app}"; Components: jackserver; Flags: ignoreversion; | ||
; jackd and server libs | ||
Source: "win32\bin\jackd.exe"; DestDir: "{app}"; Components: jackserver; Flags: ignoreversion; | ||
Source: "win32\lib\libjacknet.dll"; DestDir: "{app}"; Components: jackserver; Flags: ignoreversion; | ||
Source: "win32\lib\libjackserver.dll"; DestDir: "{app}"; Components: jackserver; Flags: ignoreversion; | ||
; drivers | ||
Source: "win32\lib\jack\*.dll"; DestDir: "{app}\jack"; Components: jackserver; Flags: ignoreversion; | ||
; tools | ||
Source: "win32\bin\jack_*.exe"; DestDir: "{app}\tools"; Components: jackserver; Flags: ignoreversion; | ||
; jack client lib (NOTE goes into windir) | ||
Source: "win32\lib\libjack.dll"; DestDir: "{win}"; Components: jackserver; Flags: ignoreversion; | ||
; dev | ||
Source: "win32\include\jack\*.h"; DestDir: "{app}\include\jack"; Components: dev; Flags: ignoreversion; | ||
Source: "win32\lib\*.a"; DestDir: "{app}\lib"; Components: dev; Flags: ignoreversion; | ||
Source: "win32\lib\*.def"; DestDir: "{app}\lib"; Components: dev; Flags: ignoreversion; | ||
Source: "win32\lib\*.lib"; DestDir: "{app}\lib"; Components: dev; Flags: ignoreversion; | ||
Source: "win32\lib\jack\*.a"; DestDir: "{app}\lib\jack"; Components: dev; Flags: ignoreversion; | ||
|
||
[Registry] | ||
Root: HKLM; Subkey: "Software\JACK"; Flags: deletevalue uninsdeletekeyifempty uninsdeletevalue; ValueType: string; ValueName: "ServerExecutable"; ValueData: "{app}\jackd.exe" | ||
Root: HKLM; Subkey: "Software\JACK"; Flags: deletevalue uninsdeletekeyifempty uninsdeletevalue; ValueType: string; ValueName: "InstallPath"; ValueData: "{app}" | ||
Root: HKLM; Subkey: "Software\JACK"; Flags: deletevalue uninsdeletekeyifempty uninsdeletevalue; ValueType: string; ValueName: "Version"; ValueData: "{#VERSION}" |
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,58 @@ | ||
#include "version.iss" | ||
|
||
[Setup] | ||
ArchitecturesInstallIn64BitMode=x64 | ||
AppName=JACK2 | ||
AppPublisher=jackaudio.org | ||
AppPublisherURL=https://github.com/jackaudio/jack2/ | ||
AppSupportURL=https://github.com/jackaudio/jack2/issues/ | ||
AppUpdatesURL=https://github.com/jackaudio/jack2-releases/releases/ | ||
AppVersion={#VERSION} | ||
DefaultDirName={commonpf64}\JACK2 | ||
DisableDirPage=yes | ||
DisableWelcomePage=no | ||
LicenseFile=..\..\COPYING | ||
OutputBaseFilename=jack2-win64-{#VERSION} | ||
OutputDir=. | ||
UsePreviousAppDir=no | ||
|
||
[Types] | ||
Name: "full"; Description: "Full installation"; | ||
Name: "custom"; Description: "Custom installation"; Flags: iscustom; | ||
|
||
[Components] | ||
Name: jackserver; Description: "JACK Server and tools"; Types: full custom; Flags: fixed; | ||
Name: dev; Description: "Developer resources"; Types: full; | ||
|
||
[Files] | ||
; icon | ||
Source: "jack.ico"; DestDir: "{app}"; Components: jackserver; Flags: ignoreversion; | ||
; jackd and server libs | ||
Source: "win64\bin\jackd.exe"; DestDir: "{app}"; Components: jackserver; Flags: ignoreversion; | ||
Source: "win64\lib\libjacknet64.dll"; DestDir: "{app}"; Components: jackserver; Flags: ignoreversion; | ||
Source: "win64\lib\libjackserver64.dll"; DestDir: "{app}"; Components: jackserver; Flags: ignoreversion; | ||
; drivers | ||
Source: "win64\lib\jack\*.dll"; DestDir: "{app}\jack"; Components: jackserver; Flags: ignoreversion; | ||
; tools | ||
Source: "win64\bin\jack_*.exe"; DestDir: "{app}\tools"; Components: jackserver; Flags: ignoreversion; | ||
; jack client lib (NOTE goes into windir) | ||
Source: "win64\lib\libjack64.dll"; DestDir: "{win}"; Components: jackserver; Flags: ignoreversion; | ||
Source: "win64\lib32\libjack.dll"; DestDir: "{win}"; Components: jackserver; Flags: ignoreversion; | ||
; dev | ||
Source: "win64\include\jack\*.h"; DestDir: "{app}\include\jack"; Components: dev; Flags: ignoreversion; | ||
Source: "win64\lib\*.a"; DestDir: "{app}\lib"; Components: dev; Flags: ignoreversion; | ||
Source: "win64\lib\*.def"; DestDir: "{app}\lib"; Components: dev; Flags: ignoreversion; | ||
Source: "win64\lib\*.lib"; DestDir: "{app}\lib"; Components: dev; Flags: ignoreversion; | ||
Source: "win64\lib32\*.a"; DestDir: "{app}\lib32"; Components: dev; Flags: ignoreversion; | ||
Source: "win64\lib32\*.def"; DestDir: "{app}\lib32"; Components: dev; Flags: ignoreversion; | ||
Source: "win64\lib32\*.lib"; DestDir: "{app}\lib32"; Components: dev; Flags: ignoreversion; | ||
Source: "win64\lib\jack\*.a"; DestDir: "{app}\lib\jack"; Components: dev; Flags: ignoreversion; | ||
|
||
[Registry] | ||
Root: HKLM; Subkey: "Software\JACK"; Flags: deletevalue uninsdeletekeyifempty uninsdeletevalue; ValueType: string; ValueName: "ServerExecutable"; ValueData: "{app}\jackd.exe" | ||
Root: HKLM; Subkey: "Software\JACK"; Flags: deletevalue uninsdeletekeyifempty uninsdeletevalue; ValueType: string; ValueName: "InstallPath"; ValueData: "{app}" | ||
Root: HKLM; Subkey: "Software\JACK"; Flags: deletevalue uninsdeletekeyifempty uninsdeletevalue; ValueType: string; ValueName: "Version"; ValueData: "{#VERSION}" | ||
; 32bit compat keys | ||
Root: HKLM; Subkey: "Software\WOW6432Node\JACK"; Flags: deletevalue uninsdeletekeyifempty uninsdeletevalue; ValueType: string; ValueName: "ServerExecutable"; ValueData: "{app}\jackd.exe" | ||
Root: HKLM; Subkey: "Software\WOW6432Node\JACK"; Flags: deletevalue uninsdeletekeyifempty uninsdeletevalue; ValueType: string; ValueName: "InstallPath"; ValueData: "{app}" | ||
Root: HKLM; Subkey: "Software\WOW6432Node\JACK"; Flags: deletevalue uninsdeletekeyifempty uninsdeletevalue; ValueType: string; ValueName: "Version"; ValueData: "{#VERSION}" |