parent
3f7bdd20bb
commit
8584addf37
@ -0,0 +1 @@
|
|||||||
|
Image-Math-Constrain-1.01.tar.gz
|
@ -0,0 +1,56 @@
|
|||||||
|
Name: perl-Image-Math-Constrain
|
||||||
|
Version: 1.01
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Scaling math used in image size constraining (such as thumbnails)
|
||||||
|
License: GPL or Artistic
|
||||||
|
Group: Development/Libraries
|
||||||
|
URL: http://search.cpan.org/dist/Image-Math-Constrain/
|
||||||
|
Source0: http://www.cpan.org/authors/id/A/AD/ADAMK/Image-Math-Constrain-%{version}.tar.gz
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
|
BuildRequires: perl(Test::Pod)
|
||||||
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||||
|
|
||||||
|
%description
|
||||||
|
There are a number of different modules and systems that constrain image
|
||||||
|
sizes, such as thumbnailing. Every one of these independantly implement the
|
||||||
|
same logic. That is, given a width and/or height constraint, they check to
|
||||||
|
see if the image is bigger than the constraint, and if so scale the image
|
||||||
|
down proportionally so that it fits within the constraints.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n Image-Math-Constrain-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
||||||
|
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
||||||
|
|
||||||
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||||
|
|
||||||
|
%check
|
||||||
|
make test
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc Changes LICENSE README
|
||||||
|
%{perl_vendorlib}/*
|
||||||
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Apr 02 2007 Steven Pritchard <steve@kspei.com> 1.01-1
|
||||||
|
- Specfile autogenerated by cpanspec 1.70.
|
||||||
|
- Drop redundant explicit perl build dependency.
|
||||||
|
- Fix typo in description.
|
||||||
|
- BR Test::Pod for better test coverage.
|
Loading…
Reference in new issue