summaryrefslogtreecommitdiff
path: root/packages/pitivi.package
blob: 218d730f8dfb73a382f8acf8fc4e50eceb1d22da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# vi:si:et:sw=4:sts=4:ts=4:syntax=python
# -*- Mode: Python -*-
from cerbero.errors import ConfigurationError


class Package(package.App):
    name = 'pitivi'
    app_name = 'Pitivi'
    app_recipe = 'pitivi'
    version = '0.94'
    shortdesc = 'Pitivi video editor'
    longdesc = 'An open source full featured video editing application'
    url = "http://www.pitivi.org"
    license = License.LGPL
    vendor = 'Pitivi project'
    org = 'org.pitivi'
    uuid = 'd9626750-e8b7-4e40-944d-98b67ed0c6bf'

    deps = ['gstreamer-1.0', 'gtk-3.0', 'python3']
    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:dark'