summaryrefslogtreecommitdiff
path: root/platform/linux
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-30 20:02:01 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-30 20:02:01 +0100
commit260747962d87ed12115e940f7a9e86fcf7983ea4 (patch)
treed23d4a329dafd2593a35a112445a2402b75be8d4 /platform/linux
parent9e1f9612a2ee20e65074467b8531803ec2df21f2 (diff)
Try to move Linux desktop files into platform/
Diffstat (limited to 'platform/linux')
-rw-r--r--platform/linux/dvdomatic.desktop.in10
-rw-r--r--platform/linux/dvdomatic_batch.desktop.in10
-rw-r--r--platform/linux/servomatic.desktop.in10
-rw-r--r--platform/linux/wscript19
4 files changed, 49 insertions, 0 deletions
diff --git a/platform/linux/dvdomatic.desktop.in b/platform/linux/dvdomatic.desktop.in
new file mode 100644
index 000000000..65067eb3b
--- /dev/null
+++ b/platform/linux/dvdomatic.desktop.in
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Encoding=UTF-8
+Version=1.0
+Type=Application
+Terminal=false
+Exec=@PREFIX@/bin/dvdomatic
+Name=DVD-o-matic
+Icon=dvdomatic
+Comment=DCP generator
+Categories=AudioVideo;Video
diff --git a/platform/linux/dvdomatic_batch.desktop.in b/platform/linux/dvdomatic_batch.desktop.in
new file mode 100644
index 000000000..8150fe849
--- /dev/null
+++ b/platform/linux/dvdomatic_batch.desktop.in
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Encoding=UTF-8
+Version=1.0
+Type=Application
+Terminal=false
+Exec=@PREFIX@/bin/dvdomatic_batch
+Name=DVD-o-matic Batch Converter
+Icon=dvdomatic
+Comment=Batch DCP generator
+Categories=AudioVideo;Video
diff --git a/platform/linux/servomatic.desktop.in b/platform/linux/servomatic.desktop.in
new file mode 100644
index 000000000..572b4c64c
--- /dev/null
+++ b/platform/linux/servomatic.desktop.in
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Encoding=UTF-8
+Version=1.0
+Type=Application
+Terminal=false
+Exec=@PREFIX@/bin/servomatic_gui
+Name=DVD-o-matic Encode Server
+Icon=dvdomatic
+Comment=DCP generator
+Categories=AudioVideo;Video
diff --git a/platform/linux/wscript b/platform/linux/wscript
new file mode 100644
index 000000000..1d9054b32
--- /dev/null
+++ b/platform/linux/wscript
@@ -0,0 +1,19 @@
+def build(bld):
+ d = { 'PREFIX' : '${PREFIX' }
+
+ obj = bld(features = 'subst')
+ obj.source = 'dvdomatic.desktop.in'
+ obj.target = 'dvdomatic.desktop'
+ obj.dict = d
+
+ obj = bld(features = 'subst')
+ obj.source = 'dvdomatic_batch.desktop.in'
+ obj.target = 'dvdomatic_batch.desktop'
+ obj.dict = d
+
+ obj = bld(features = 'subst')
+ obj.source = 'servomatic.desktop.in'
+ obj.target = 'servomatic.desktop'
+ obj.dict = d
+
+ bld.install_files('${PREFIX}/share/applications', ['dvdomatic.desktop', 'dvdomatic_batch.desktop', 'servomatic.desktop'])