diff --git a/README.md b/README.md index 111862a..b221544 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # perl-Image-Xbm +This class module provides basic load, manipulate and save functionality for the xbm file format. +It inherits from C which provides additional manipulation functionality, e.g. C. +See the C pod for information on adding your own functionality to all the C derived classes. + diff --git a/perl-Image-Xbm.spec b/perl-Image-Xbm.spec new file mode 100644 index 0000000..16b2a41 --- /dev/null +++ b/perl-Image-Xbm.spec @@ -0,0 +1,64 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Image-Xbm +Version: 1.08 +Release: 4mamba +Summary: Image::Xbm - Load, create, manipulate and save xbm image files +Group: Development/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Aleph0 +URL: http://www.cpan.org +Source: http://www.cpan.org/modules/by-module/Image/Image-Xbm-%{version}.tar.gz +License: GPL +BuildRequires: perl-Image-Base +BuildRequires: perl-devel >= %perl_major_ver +Requires: perl >= %perl_major_ver +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +This class module provides basic load, manipulate and save functionality for the xbm file format. +It inherits from C which provides additional manipulation functionality, e.g. C. +See the C pod for information on adding your own functionality to all the C derived classes. + +%prep +%setup -q -n Image-Xbm-%{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 -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) + +%changelog +* Thu Aug 29 2013 Automatic Build System 1.08-4mamba +- automatic rebuild by autodist + +* Wed Nov 05 2008 Silvan Calarco 1.08-3mamba +- automatic rebuild by autodist + +* Fri Nov 30 2007 Aleph0 1.08-2mamba +- specfile updated + +* Tue Oct 26 2004 Mirko Cortillaro 1.08-1qilnx +- package created by autospec