diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-08-13 00:21:35 +0530 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2019-08-13 13:53:40 +0100 |
commit | fb86e8fc72f730fddc1fd8d4b337e83c70b93ffe (patch) | |
tree | c2de6e0eef0f92a7e589cf9d4f2e3ab53b8d4cb3 /packages | |
parent | 96e55d34ee346f2e2bb3b0d327e1687499e2922b (diff) |
packages: Fix gstreamer license
It's LGPL2+, not LGPL. Matches recipes/custom.py now.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/custom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/custom.py b/packages/custom.py index 87d82735..dbce8b3e 100644 --- a/packages/custom.py +++ b/packages/custom.py @@ -8,5 +8,5 @@ class GStreamer: url = "http://gstreamer.freedesktop.org" version = '1.16.0.1' vendor = 'GStreamer Project' - licenses = [License.LGPL] + licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' |