]> TLD Linux GIT Repositories - packages/rpm.git/blobdiff - rpm-php-provides
- modified to support rpm-tld-macros which replaced rpm-build-macros
[packages/rpm.git] / rpm-php-provides
diff --git a/rpm-php-provides b/rpm-php-provides
deleted file mode 100644 (file)
index a094cba..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/perl
-#####################################################################
-#                                                                   #
-# Check system dependences between php-pear modules                 #
-#                                                                   #
-# Pawe³ Go³aszewski <blues@ds.pg.gda.pl>                            #
-# Micha³ Moskal <malekith@pld-linux.org>                            #
-# ------------------------------------------------------------------#
-# TODO:                                                             #
-#####################################################################
-
-$pear = "/usr/share/pear";
-
-foreach (@ARGV ? @ARGV : <>) {
-       chomp;
-       $f = $_;
-       next unless ($f =~ /$pear.*\.php$/);
-       $f =~ s/.*$pear\///;
-       print "pear($f)\n";
-}