diff --git a/README.md b/README.md index 19e60e2..de14973 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Locale-Maketext-Lexicon +Extract translatable strings from source. + diff --git a/perl-Locale-Maketext-Lexicon.spec b/perl-Locale-Maketext-Lexicon.spec new file mode 100644 index 0000000..6e3a9b0 --- /dev/null +++ b/perl-Locale-Maketext-Lexicon.spec @@ -0,0 +1,64 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Locale-Maketext-Lexicon +Version: 0.99 +Release: 1mamba +Summary: Extract translatable strings from source +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/D/DR/DRTECH/Locale-Maketext-Lexicon-%{version}.tar.gz +License: GPL, Artistic +## AUTOBUILDREQ-BEGIN +BuildRequires: perl-devel +BuildRequires: perl-PPI +BuildRequires: perl-Template-Toolkit +BuildRequires: perl-YAML +BuildRequires: perl-Text-Haml +## AUTOBUILDREQ-END +Requires: perl >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Extract translatable strings from source. + +%prep +%setup -q -n Locale-Maketext-Lexicon-%{version} + +%build +%{__perl} Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor OPTIMIZE="%{optflags}" + +%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) +%doc AUTHORS LICENSE +## note: eventually add the remaining documents (if any) +# %doc README + +%changelog +* Sat Feb 22 2014 Automatic Build System 0.99-1mamba +- automatic update by autodist + +* Wed Jul 17 2013 Silvan Calarco 0.96-1mamba +- package created by silvan using the webbuild interface