#!/usr/bin/perl -w =head1 NAME dh_desktop - Register .desktop files =cut use strict; use Debian::Debhelper::Dh_Lib; =head1 SYNOPSIS B [S>] [B<-p>] =head1 DESCRIPTION dh_desktop is a debhelper program that registers .desktop files. Currently this program does not handle installation of the files, though it may do so at a later date. It takes care of adding maintainer script fragments to call F. =cut init(); foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); if (-d "$tmp/usr/share/applications") { # Get a list of the desktop files that are in # usr/share/applications and thus might need # update-desktop-database be called. Other desktop # files don't. my $desktop_files = `find $tmp/usr/share/applications -type f -name \\*.desktop -printf '%p\n'`; if ($desktop_files && ! $dh{NOSCRIPTS}) { autoscript($package,"postinst","postinst-desktop"); autoscript($package,"postrm","postrm-desktop"); } } } =head1 SEE ALSO L This program is a part of debhelper. =head1 AUTHOR Ross Burton =cut