Import
This commit is contained in:
parent
7f0038dc25
commit
7180d05bf3
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
|||||||
|
/Env-1.04.tar.gz
|
49
perl-Env.spec
Normal file
49
perl-Env.spec
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
Name: perl-Env
|
||||||
|
Version: 1.04
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Perl module that imports environment variables as scalars or arrays
|
||||||
|
License: GPL+ or Artistic
|
||||||
|
Group: Development/Libraries
|
||||||
|
URL: http://search.cpan.org/dist/Env/
|
||||||
|
Source0: http://www.cpan.org/authors/id/F/FL/FLORA/Env-%{version}.tar.gz
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRequires: perl
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30
|
||||||
|
BuildRequires: perl(strict)
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
|
# Run-time:
|
||||||
|
BuildRequires: perl(Config)
|
||||||
|
BuildRequires: perl(Tie::Array)
|
||||||
|
# Tests:
|
||||||
|
BuildRequires: perl(Test::More)
|
||||||
|
BuildRequires: perl(vars)
|
||||||
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
|
|
||||||
|
%description
|
||||||
|
Perl maintains environment variables in a special hash named %%ENV. For when
|
||||||
|
this access method is inconvenient, the Perl module Env allows environment
|
||||||
|
variables to be treated as scalar or array variables.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n Env-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
%install
|
||||||
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
||||||
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||||
|
|
||||||
|
%check
|
||||||
|
make test
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc Changes LICENSE README
|
||||||
|
%{perl_vendorlib}/*
|
||||||
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Mar 22 2013 Petr Pisar <ppisar@redhat.com> 1.04-1
|
||||||
|
- Specfile autogenerated by cpanspec 1.78.
|
Loading…
Reference in New Issue
Block a user