source: config-package-dev/decode @ e083700

Revision e083700, 353 bytes checked in by Geoffrey Thomas <geofft@…>, 11 years ago (diff)
Create Debian::Debhelper::config_package to share encode/decode functions This will be used both by dh_configpackage and the standalone encode and decode scripts (converted in this commit).
  • Property mode set to 100755
RevLine 
[6df6dbb]1#!/usr/bin/perl
[e083700]2# Reverse the encoding performed by the "encode" helper.
3#
4# This is not currently used by config-package-dev itself, but can by
5# used by helper programs that want to determine what files are diverted
6# by a package generated using this system.
[7a1d9a7]7
8use strict;
9use warnings;
[e083700]10use Debian::Debhelper::config_package;
[7a1d9a7]11
[e083700]12print decode($ARGV[0]);
Note: See TracBrowser for help on using the repository browser.