diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-07-01 12:47:53 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-07-01 12:47:53 +0000 |
commit | 776c50b96e47354b7c32b56f5b1965d266fd23a7 (patch) | |
tree | 63dec20c67ef330153ca31d87c62fc9ac916758f /perl-install | |
parent | e1729dfdb9c341fe0b9fed7d7b0a80691a547d82 (diff) | |
download | drakx-776c50b96e47354b7c32b56f5b1965d266fd23a7.tar drakx-776c50b96e47354b7c32b56f5b1965d266fd23a7.tar.gz drakx-776c50b96e47354b7c32b56f5b1965d266fd23a7.tar.bz2 drakx-776c50b96e47354b7c32b56f5b1965d266fd23a7.tar.xz drakx-776c50b96e47354b7c32b56f5b1965d266fd23a7.zip |
*** empty log message ***
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/c.pm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/perl-install/c.pm b/perl-install/c.pm deleted file mode 100644 index d1da19f2d..000000000 --- a/perl-install/c.pm +++ /dev/null @@ -1,25 +0,0 @@ -package c; - -use strict; -use vars qw($VERSION @ISA); - -require DynaLoader; - -@ISA = qw(DynaLoader); -$VERSION = '0.01'; - -bootstrap c $VERSION; - -1; - -sub headerGetEntry { - my ($h, $q) = @_; - - $q eq 'name' and return headerGetEntry_string($h, RPMTAG_NAME()); - $q eq 'group' and return headerGetEntry_string($h, RPMTAG_GROUP()); - $q eq 'version' and return headerGetEntry_string($h, RPMTAG_VERSION()); - $q eq 'release' and return headerGetEntry_string($h, RPMTAG_RELEASE()); - $q eq 'arch' and return headerGetEntry_string($h, RPMTAG_ARCH()); - $q eq 'size' and return headerGetEntry_int($h, RPMTAG_SIZE()); -} - |