diff options
author | Andoni Morales <ylatuya@gmail.com> | 2014-01-17 18:14:42 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2014-01-30 12:32:11 +0100 |
commit | cb7a4dfd1289ee5bf71c40e6a7fb5c6efd7eb9c4 (patch) | |
tree | 2ae409a5cedb5b53d0a680beea589ec09d6dc9f5 /packages | |
parent | 0093d0b7be81435ae705742033a5362437373bcb (diff) |
variants: add new variants to customize builds even more
diabled for ios and android:
gtk, python, clutter
enabled for linux:
x11, alsa, pulse, cdparanoia, v4l2
Diffstat (limited to 'packages')
-rw-r--r-- | packages/gstreamer-1.0-system.package | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/gstreamer-1.0-system.package b/packages/gstreamer-1.0-system.package index f5bf04a2..7a785485 100644 --- a/packages/gstreamer-1.0-system.package +++ b/packages/gstreamer-1.0-system.package @@ -23,4 +23,6 @@ class Package(package.Package): 'gst-plugins-ugly-1.0-static:plugins_sys_devel', 'gst-plugins-bad-1.0-static:plugins_sys_devel'] - platform_files = {Platform.LINUX: ['cdparanoia:libs']} + def prepare(self): + if self.config.variants.cdparanoia: + self.files += ['cdparanoia:libs'] |