12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- Name: perl-Class-Gomor
- Summary: Perl module that implements another class and object builder
- Version: 1.03
- Release: 1%{?_dist_release}
- License: Artistic or GPL+
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Class-Gomor/
- Source: http://search.cpan.org/CPAN/authors/id/G/GO/GOMOR/Class-Gomor-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildArch: noarch
- BuildRequires: perl
- BuildRequires: perl(Data::Dumper)
- BuildRequires: perl(ExtUtils::MakeMaker)
- Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- Class-Gomor is a Perl module that implements another class and object builder.
- %prep
- %setup -q -n Class-Gomor-%{version}
- %build
- %{__perl} Makefile.PL INSTALLDIRS="vendor"
- %{__make} %{?_smp_mflags}
- %install
- %{__rm} -rf %{buildroot}
- %{__make} pure_install DESTDIR=%{buildroot}
- ### Clean up buildroot
- find %{buildroot} -name .packlist -exec %{__rm} {} \;
- ### Clean up docs
- find examples/ -type f -exec %{__chmod} a-x {} \;
- %clean
- %{__rm} -rf %{buildroot}
- %files
- %defattr(-, root, root, 0755)
- %doc Changes LICENSE LICENSE.Artistic MANIFEST META.yml README examples/
- %doc %{_mandir}/man3/*.3pm*
- %dir %{perl_vendorlib}/Class/
- %{perl_vendorlib}/Class/Gomor/
- %{perl_vendorlib}/Class/Gomor.pm
- %changelog
- * Sun Feb 8 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.03-1
- - updated to 1.03
- - built with perl 5.16.3
- * Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.02-1
- - initial build for Vine Linux
|