1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- Name: perl-Class-Gomor
- Summary: Perl module that implements another class and object builder
- Version: 1.02
- 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)
- %description
- Class-Gomor is a Perl module that implements another class and object builder.
- %prep
- %setup -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
- * Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.02-1
- - initial build for Vine Linux
|