123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- %define real_name Authen-Captcha
- Summary: a Perl extension for creating captchas
- Summary(ja): CAPTCHA(tm) を Perl で扱うための Module
- Name: perl-Authen-Captcha
- Version: 1.023
- Release: 1%{?_dist_release}
- License: distributable
- Group: Development/Libraries
- Source0: ftp://ftp.cpan.org/pub/CPAN/modules/by-module/Net/%{real_name}-%{version}.tar.gz
- Buildroot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- BuildRequires: perl >= 5.8.0
- BuildRequires: perl-GD
- Requires: perl >= 5.8.0
- %description
- Perl extension for creating captcha's
- to verify the human element in transactions.
- %description -l ja
- CAPTCHA(tm) を Perl で扱うための Module
- %prep
- %setup -q -n %{real_name}-%{version}
- %build
- perl Makefile.PL INSTALLDIRS=vendor
- make
- %install
- rm -rf %{buildroot}
- make pure_install DESTDIR=%{buildroot}
-
- find $RPM_BUILD_ROOT%{_prefix} -type f -print |
- sed "s@^$RPM_BUILD_ROOT@@g" |
- grep -v ^%{_mandir} |
- grep -v perllocal.pod |
- grep -v "\.packlist" > %{name}.files
- if [ "$(cat %{name}.files)X" = "X" ] ; then
- echo "ERROR: EMPTY FILE LIST"
- exit -1
- fi
- %clean
- rm -rf %{buildroot}
- %check
- make test
- %files -f %{name}.files
- %defattr(-,root,root)
- %doc Changes MANIFEST README license.txt
- %dir %{perl_vendorlib}/Authen/Captcha
- %{_mandir}/*/*
- %changelog
- * Wed Mar 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.023-1
- - applied new versioning policy
- - spec in UTF-8
- - changed Group to Development/Libraries
- - installed perl modules to vendor_perl directory
- * Wed Jul 26 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.023-0vl1
- - for VineSeed (plus)
- * Tue Jul 11 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.023-0vl0
- - initial package for VinePlus
|