perl-Devel-CheckLib/perl-Devel-CheckLib.spec

77 lines
2.3 KiB
RPMSpec

%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0)
Name: perl-Devel-CheckLib
Version: 1.16
Release: 1mamba
Summary: Devel::CheckLib - check that a library is available
Group: System/Libraries/Perl
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://www.cpan.org/
Source: http://search.cpan.org/CPAN/authors/id/M/MA/MATTN/Devel-CheckLib-%{version}.tar.gz
License: GPL, Artistic
## AUTOBUILDREQ-BEGIN
BuildRequires: libperl
BuildRequires: perl-devel
## AUTOBUILDREQ-END
BuildRequires: perl-IO-CaptureOutput
Requires: perl >= %perl_major_ver
%description
Devel::CheckLib - check that a library is available.
%prep
%setup -q -n Devel-CheckLib-%{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)
## note: eventually add the remaining documents (if any)
# %doc CHANGES README TODO
%changelog
* Thu May 05 2022 Automatic Build System <autodist@mambasoft.it> 1.16-1mamba
- automatic version update by autodist
* Mon Apr 20 2020 Automatic Build System <autodist@mambasoft.it> 1.14-1mamba
- automatic update by autodist
* Sun Oct 22 2017 Automatic Build System <autodist@mambasoft.it> 1.11-1mamba
- automatic update by autodist
* Sat Jan 09 2016 Automatic Build System <autodist@mambasoft.it> 1.05-1mamba
- automatic update by autodist
* Sat Jan 17 2015 Automatic Build System <autodist@mambasoft.it> 1.03-1mamba
- automatic update by autodist
* Sun Sep 21 2014 Automatic Build System <autodist@mambasoft.it> 1.02-1mamba
- automatic update by autodist
* Wed Apr 09 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 1.01-1mamba
- package created using the webbuild interface