]> git.pld-linux.org Git - packages/rpm.git/blobdiff - rpm-php-provides
- adapterized, partial files update
[packages/rpm.git] / rpm-php-provides
index 039499e515d08fbb90b58a9c6733b1a4ebdd7e70..a094cba8805a5a7b0ccafc482f7d14c63f2110e2 100644 (file)
@@ -1,14 +1,20 @@
-#!/bin/sh
-if [ $# -lt 1 ]; then
-       echo "You have to specify input file"
-       exit 1
-fi
+#!/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:                                                             #
+#####################################################################
 
-filelist=`echo $@`
-for i in $filelist; do
-       j=`cat $i |egrep -i "^Class" |cut -f 2 -d " "`
-       if [ -n "$j" ]; then
-               echo "Provides: pear($j)"
-       fi
-       j=""
-done
+$pear = "/usr/share/pear";
+
+foreach (@ARGV ? @ARGV : <>) {
+       chomp;
+       $f = $_;
+       next unless ($f =~ /$pear.*\.php$/);
+       $f =~ s/.*$pear\///;
+       print "pear($f)\n";
+}
This page took 0.059696 seconds and 4 git commands to generate.