File: cargo.pm

package info (click to toggle)
dh-cargo 33
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 60 kB
  • sloc: sh: 202; perl: 198; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 235 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
# debhelper sequence file for packaging Rust crates with cargo

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

# See https://bugs.debian.org/1023413 
add_command_options('dh_clean', '-XCargo.toml.orig');

1;