#!/usr/bin/perl

use strict;
use warnings;
use Cwd qw/getcwd/;

use Debian::Debhelper::Dh_Lib;

=head1 NAME

dh_raku_clean -- clean Raku precompiled files

=head1 SYNOPSIS

B<dh_raku_clean>

=head1 DESCRIPTION

This script removes all precompiled files produced by C<dh_raku_build>.

=head1 SEE ALSO

L<debhelper>(7), L<dh>(1)

=cut

init();

foreach my $pkg (getpackages()) {
    nonquiet_print("Cleaning $pkg");

    # clean up
    doit(qw!rm -rf lib/.precomp!);
}
