62 lines
1.9 KiB
RPMSpec
62 lines
1.9 KiB
RPMSpec
|
%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0)
|
||
|
|
||
|
Name: perl-Package-Constants
|
||
|
Version: 0.02
|
||
|
Release: 2mamba
|
||
|
Summary: Package::Constants -- List all constants declared in a package
|
||
|
Group: System/Libraries/Perl
|
||
|
Vendor: openmamba
|
||
|
Distribution: openmamba
|
||
|
Packager: Automatic Build System <autodist@mambasoft.it>
|
||
|
URL: http://www.cpan.org
|
||
|
Source: http://search.cpan.org/CPAN/authors/id/K/KA/KANE/Package-Constants-%{version}.tar.gz
|
||
|
License: GPL, Artistic
|
||
|
Requires: perl >= %perl_major_ver
|
||
|
BuildRequires: perl-devel >= %perl_major_ver
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||
|
|
||
|
%description
|
||
|
Package::Constants lists all the constants defined in a certain package. This can be useful for, among others, setting up an autogenerated @EXPORT/@EXPORT_OK for a Constants.pm file.
|
||
|
|
||
|
%prep
|
||
|
|
||
|
%setup -q -n Package-Constants-%{version}
|
||
|
|
||
|
%build
|
||
|
perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor
|
||
|
%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 $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}"
|
||
|
rm -f .packlist
|
||
|
|
||
|
%files -f .packlist
|
||
|
%defattr(-,root,root)
|
||
|
|
||
|
%changelog
|
||
|
* Wed Jul 10 2013 Automatic Build System <autodist@mambasoft.it> 0.02-2mamba
|
||
|
- automatic version update by autodist
|
||
|
|
||
|
* Fri Feb 06 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 0.02-1mamba
|
||
|
- automatic update by autodist
|
||
|
|
||
|
* Wed Nov 05 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 0.01-2mamba
|
||
|
- automatic rebuild by autodist
|
||
|
|
||
|
* Mon Oct 20 2008 gil <puntogil@libero.it> 0.01-1mamba
|
||
|
- package created by autospec
|