package created by autospec [release 0.04-1mamba;Mon Mar 11 2013]
This commit is contained in:
parent
90d5ac39ba
commit
74e7382553
@ -1,2 +1,4 @@
|
|||||||
# perl-Shell
|
# perl-Shell
|
||||||
|
|
||||||
|
Perl::Shell is a Python-style "command line interpreter" for Perl.
|
||||||
|
|
||||||
|
62
perl-Shell.spec
Normal file
62
perl-Shell.spec
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0)
|
||||||
|
|
||||||
|
Name: perl-Shell
|
||||||
|
Version: 0.04
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: Perl::Shell - A Python-style "command line interpreter" for Perl
|
||||||
|
Group: System/Libraries/Perl
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Davide Madrisan <davide.madrisan@gmail.com>
|
||||||
|
URL: http://www.cpan.org
|
||||||
|
Source: http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Perl-Shell-%{version}.tar.gz
|
||||||
|
License: GPL, Artistic
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
## note: run 'autospec -u -a6 perl-Shell' to get the list of build requirements.
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRequires: perl-devel
|
||||||
|
BuildRequires: perl-Lexical-Persistence
|
||||||
|
BuildRequires: perl-PPI
|
||||||
|
BuildRequires: perl-Params-Util
|
||||||
|
BuildRequires: perl-Test-Script
|
||||||
|
Requires: perl >= %perl_major_ver
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
Perl::Shell is a Python-style "command line interpreter" for Perl.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n Perl-Shell-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%{__perl} Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
||||||
|
|
||||||
|
%make
|
||||||
|
%make test
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
%makeinstall_perl
|
||||||
|
|
||||||
|
packlist=`find %{buildroot} -name .packlist`
|
||||||
|
[ -z "$packlist" ] && exit 1 || cat $packlist | \
|
||||||
|
sed "s,%{buildroot},,g;s,.*/man/.*,&.gz,g" | \
|
||||||
|
sort -u > .packlist && rm -f $packlist
|
||||||
|
|
||||||
|
strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'`
|
||||||
|
for dir in `find %{buildroot} -type d | grep $strid`; do
|
||||||
|
echo "%dir ${dir#%buildroot}" >> .packlist
|
||||||
|
done
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%files -f .packlist
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc LICENSE
|
||||||
|
## note: eventually add the remaining documents (if any)
|
||||||
|
# %doc README
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Mar 11 2013 Davide Madrisan <davide.madrisan@gmail.com> 0.04-1mamba
|
||||||
|
- package created by autospec
|
Loading…
Reference in New Issue
Block a user