Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKissaki <kissaki@gmx.de>2013-07-14 14:47:39 +0400
committerKissaki <kissaki@gmx.de>2013-07-14 14:48:23 +0400
commit82fa0e60e7b3b3ca45110db68d3d7e7449ae241d (patch)
tree32b73a035a39e428a325982da2d9829fcb07dc54 /scripts/mklic.pl
parent2fd6a3cc7c5db2cb29b7b007cffed1312c17833c (diff)
Adjust mklic.pl script
* Fix mixup of CELT and Speex licenses in about dialog. * Add filter.svg icon license information
Diffstat (limited to 'scripts/mklic.pl')
-rwxr-xr-xscripts/mklic.pl10
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/mklic.pl b/scripts/mklic.pl
index 604dd74e8..0f047f091 100755
--- a/scripts/mklic.pl
+++ b/scripts/mklic.pl
@@ -51,9 +51,9 @@ print $F licenseFileToVar("licenseMumble", "../LICENSE");
# List of 3rd party licenses [<variableName>, <pathToLicenseFile>, <DisplayName>, <URL>]
my @thirdPartyLicenses = (
- ["licenseCELT", "../celt-0.11.0-src/COPYING", "Speex", "http://www.speex.org/"],
+ ["licenseCELT", "../celt-0.11.0-src/COPYING", "CELT", "http://www.celt-codec.org/"],
["licenseOpus", "../opus-src/COPYING", "Opus", "http://www.opus-codec.org/"],
- ["licenseSPEEX", "../speex/COPYING", "CELT", "http://www.celt-codec.org/"],
+ ["licenseSPEEX", "../speex/COPYING", "Speex", "http://www.speex.org/"],
["licenseOpenSSL", "../3rdPartyLicenses/openssl_license.txt", "OpenSSL", "http://www.openssl.org/"],
["licenseLibsndfile", "../3rdPartyLicenses/libsndfile_license.txt", "libsndfile", "http://www.mega-nerd.com/libsndfile/"],
["licenseOgg", "../3rdPartyLicenses/libogg_license.txt", "libogg", "http://www.xiph.org/"],
@@ -61,8 +61,10 @@ my @thirdPartyLicenses = (
["licenseFLAC", "../3rdPartyLicenses/libflac_license.txt", "libFLAC", "http://flac.sourceforge.net/"],
["licenseMachOverride", "../3rdPartyLicenses/mach_override_license.txt", "mach_override", "https://github.com/rentzsch/mach_star", "Q_OS_MAC"],
["licenseQtTranslations", "../src/mumble/qttranslations/LICENSE",
- "Additional Qt translations", "https://www.virtualbox.org/ticket/2018", "USING_BUNDLED_QT_TRANSLATIONS"]);
-
+ "Additional Qt translations", "https://www.virtualbox.org/ticket/2018", "USING_BUNDLED_QT_TRANSLATIONS"],
+ ["licenseFilterSvg", "../icons/Filter.txt", "Filter.svg icon", "https://commons.wikimedia.org/wiki/File:Filter.svg"],
+ );
+
# Print 3rd party licenses
foreach (@thirdPartyLicenses) {
printGuarded($F, licenseFileToVar(@$_[0], @$_[1]), @$_[4]);