12 lines
278 B
Bash
12 lines
278 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# filter some redundant stuff. This is part of the fedora-extras perl-POE
|
||
|
# package.
|
||
|
#
|
||
|
# Chris Weyl <cweyl@alumni.drew.edu> 2006
|
||
|
|
||
|
/usr/lib/rpm/perl.prov $* | \
|
||
|
sed -e '/^perl(POE::Kernel)$/d' -e '/^perl(POE::Loop::Tk)$/d' \
|
||
|
-e 's/:Resources:/:Resource:/'
|
||
|
|