blob: aff669dd5ee1cbb1636655c31c53875cd9f5df58 (
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.93-beta'
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']
# Needed to bundle for linux
desktop_file='share/applications/pitivi.desktop'
commands=[('pitivi', 'bin/pitivi')]
default_gtk_theme='Adwaita'
|