diff options
-rw-r--r-- | packages/pitivi.package | 6 | ||||
-rw-r--r-- | recipes/pitivi.recipe | 3 |
2 files changed, 4 insertions, 5 deletions
diff --git a/packages/pitivi.package b/packages/pitivi.package index aff669dd..218d730f 100644 --- a/packages/pitivi.package +++ b/packages/pitivi.package @@ -7,7 +7,7 @@ class Package(package.App): name = 'pitivi' app_name = 'Pitivi' app_recipe = 'pitivi' - version = '0.93-beta' + version = '0.94' shortdesc = 'Pitivi video editor' longdesc = 'An open source full featured video editing application' url = "http://www.pitivi.org" @@ -17,10 +17,10 @@ class Package(package.App): uuid = 'd9626750-e8b7-4e40-944d-98b67ed0c6bf' deps = ['gstreamer-1.0', 'gtk-3.0', 'python3'] - files = ['shared-mime-info'] + files = ['shared-mime-info', 'clutter', 'clutter-gtk'] # Needed to bundle for linux desktop_file='share/applications/pitivi.desktop' commands=[('pitivi', 'bin/pitivi')] - default_gtk_theme='Adwaita' + default_gtk_theme='Adwaita:dark' diff --git a/recipes/pitivi.recipe b/recipes/pitivi.recipe index f1e04f5d..a275786a 100644 --- a/recipes/pitivi.recipe +++ b/recipes/pitivi.recipe @@ -3,7 +3,7 @@ from cerbero.errors import ConfigurationError class Recipe(recipe.Recipe): name = 'pitivi' - version = '0.93' + version = '0.94' licenses = [License.GPLv2Plus] remotes = {'origin': 'git://git.gnome.org/pitivi'} config_sh = 'sh ./autogen.sh --noconfigure && ./configure' @@ -15,7 +15,6 @@ class Recipe(recipe.Recipe): 'gst-plugins-bad-1.0', 'gst-plugins-ugly-1.0', 'clutter-gtk', - 'clutter-gst', 'numpy', 'gnome-themes-standard', 'gnome-icon-theme', |