diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-30 20:02:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-30 20:02:01 +0100 |
| commit | 260747962d87ed12115e940f7a9e86fcf7983ea4 (patch) | |
| tree | d23d4a329dafd2593a35a112445a2402b75be8d4 /platform/linux/wscript | |
| parent | 9e1f9612a2ee20e65074467b8531803ec2df21f2 (diff) | |
Try to move Linux desktop files into platform/
Diffstat (limited to 'platform/linux/wscript')
| -rw-r--r-- | platform/linux/wscript | 19 |
1 files changed, 19 insertions, 0 deletions
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']) |
