diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-08-13 00:21:35 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-08-13 00:26:17 +0530 |
commit | 372668ca94f2c9df1c88f16698a923ed851bfc16 (patch) | |
tree | f6714f471dca6cb8e2234f92fd50c0659e4001fd /packages | |
parent | dc3d19ad939805e15cc58cbc6c281f42fb6a641a (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 ccf64a92..19e5180a 100644 --- a/packages/custom.py +++ b/packages/custom.py @@ -8,5 +8,5 @@ class GStreamer: url = "http://gstreamer.freedesktop.org" version = '1.17.0.1' vendor = 'GStreamer Project' - licenses = [License.LGPL] + licenses = [License.LGPLv2Plus] org = 'org.freedesktop.gstreamer' |