diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-01-28 17:20:36 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2019-02-04 18:49:30 +0000 |
commit | 24fa840854a56d67e0324a460db3bbea8928ec32 (patch) | |
tree | ff2ef77edea845ff8fb62e4e30dce8d74949366f /recipes/x264.recipe | |
parent | 3e9e273aa619ee13a7c440ddfb963a803a1eb561 (diff) |
licenses: Fix a couple of licenses and remove unused enums
freetype: You have to pick between FTL and GPLv2
frei0r-plugins: It's GPLv2+, not LGPL
openssl: Obviously, OpenSSL not BSD
harfbuzz: Actually BSD, not LGPLv2+
lame: transitioned to LGPL2, no longer GPL
nettle/gmp: licensed under all three licenses
osx-framework: No license, just copying of files from other recipes
gst-shell, vsintegration, etc: Match with gstreamer's license
toolchain: All LGPLv2+, GPLv2+, or GPLv3+
other recipes: verified by `diff -uw` on license
Remove most unused license enums, except Proprietary
Diffstat (limited to 'recipes/x264.recipe')
-rw-r--r-- | recipes/x264.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/x264.recipe b/recipes/x264.recipe index 6267c943..b1ffb892 100644 --- a/recipes/x264.recipe +++ b/recipes/x264.recipe @@ -5,7 +5,7 @@ from cerbero.tools.libtool import LibtoolLibrary class Recipe(recipe.Recipe): version = '20161218-2245' name = 'x264' - licenses = [License.GPL] + licenses = [License.GPLv2Plus] stype = SourceType.TARBALL configure_tpl = "%(config-sh)s --prefix=%(prefix)s "\ "--libdir=%(libdir)s" |