File: dh_desktop

package info (click to toggle)
debhelper 9.20150101
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,460 kB
  • sloc: perl: 5,757; makefile: 89; sh: 7
file content (41 lines) | stat: -rwxr-xr-x 749 bytes parent folder | download | duplicates (3)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/perl -w

=head1 NAME

dh_desktop - deprecated no-op

=cut

use strict;
use Debian::Debhelper::Dh_Lib;

=head1 SYNOPSIS

B<dh_desktop> [S<I<debhelper options>>]

=head1 DESCRIPTION

B<dh_desktop> was a debhelper program that registers F<.desktop> files.
However, it no longer does anything, and is now deprecated.

If a package ships F<desktop> files, they just need to be installed in the
correct location (F</usr/share/applications>) and they will be registered by
the appropriate tools for the corresponding desktop environments.

=cut

init();

warning("This program is deprecated, and does nothing anymore.");

=head1 SEE ALSO

L<debhelper>

This program is a part of debhelper.

=head1 AUTHOR

Ross Burton <ross@burtonini.com>

=cut