12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- %define real_name Data-Phrasebook-Loader-YAML
- Summary: Absract your phrases with YAML
- Name: perl-%{real_name}
- Version: 0.09
- Release: 1%{?_dist_release}
- License: Artistic or GPL+
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Data-Phrasebook-Loader-YAML/
- Source0: http://www.cpan.org/modules/by-module/Data/Data-Phrasebook-Loader-YAML-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildArch: noarch
- BuildRequires: perl
- BuildRequires: perl(ExtUtils::MakeMaker)
- BuildRequires: perl(Data::Phrasebook) >= 0.18
- BuildRequires: perl(Test::More) >= 0.47
- BuildRequires: perl(YAML) >= 0.35
- %description
- Absract your phrases with YAML.
- %prep
- %setup -q -n %{real_name}-%{version}
- %build
- CFLAGS="%{optflags}" %{__perl} Makefile.PL INSTALLDIRS=vendor
- make %{?_smp_mflags} OPTIMIZE="%{optflags}"
- %install
- rm -rf %{buildroot}
- make pure_install PERL_INSTALL_ROOT=%{buildroot}
- find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
- find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
- find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';'
- chmod -R u+w %{buildroot}/*
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-, root, root, -)
- %doc Artistic COPYING Changes INSTALL LICENSE MANIFEST MANIFEST.SKIP META.yml README examples
- %{_mandir}/man3/*
- %{perl_vendorlib}/*
- %changelog
- * Tue Mar 13 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.09-1
- - initial build for Vine Linux
|