]> git.donarmstrong.com Git - debhelper.git/blob - dh_desktop
Updated French man page translation. Closes: #685560
[debhelper.git] / dh_desktop
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_desktop - deprecated no-op
6
7 =cut
8
9 use strict;
10 use Debian::Debhelper::Dh_Lib;
11
12 =head1 SYNOPSIS
13
14 B<dh_desktop> [S<I<debhelper options>>]
15
16 =head1 DESCRIPTION
17
18 B<dh_desktop> was a debhelper program that registers F<.desktop> files.
19 However, it no longer does anything, and is now deprecated.
20
21 If a package ships F<desktop> files, they just need to be installed in the
22 correct location (F</usr/share/applications>) and they will be registered by
23 the appropriate tools for the corresponding desktop environments.
24
25 =cut
26
27 init();
28
29 warning("This program is deprecated, and does nothing anymore.");
30
31 =head1 SEE ALSO
32
33 L<debhelper>
34
35 This program is a part of debhelper.
36
37 =head1 AUTHOR
38
39 Ross Burton <ross@burtonini.com>
40
41 =cut