automatic version update by autodist [release 0.09-1mamba;Thu Nov 22 2012]
This commit is contained in:
parent
cb4155cf53
commit
707facf4ed
@ -1,2 +1,4 @@
|
|||||||
# perl-Text-Glob
|
# perl-Text-Glob
|
||||||
|
|
||||||
|
Text::Glob implements glob(3) style matching that can be used to match against text, rather than fetching names from a filesystem. If you want to do full file globbing use the File::Glob module instead.
|
||||||
|
|
||||||
|
66
perl-Text-Glob.spec
Normal file
66
perl-Text-Glob.spec
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0)
|
||||||
|
|
||||||
|
Name: perl-Text-Glob
|
||||||
|
Version: 0.09
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: Text::Glob - match globbing patterns against text
|
||||||
|
Group: System/Libraries/Perl
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Automatic Build System <autodist@mambasoft.it>
|
||||||
|
URL: http://www.cpan.org
|
||||||
|
Source: http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/Text-Glob-%{version}.tar.gz
|
||||||
|
License: GPL, Artistic
|
||||||
|
Requires: perl >= %perl_major_ver
|
||||||
|
BuildRequires: perl-devel >= %perl_major_ver
|
||||||
|
BuildRequires: perl-Module-Build
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
Text::Glob implements glob(3) style matching that can be used to match against text, rather than fetching names from a filesystem. If you want to do full file globbing use the File::Glob module instead.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
|
||||||
|
%setup -q -n Text-Glob-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
perl Build.PL installdirs=vendor
|
||||||
|
./Build
|
||||||
|
./Build test
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
./Build install \
|
||||||
|
destdir="%{buildroot}" \
|
||||||
|
--install_path bindoc="%{_mandir}/man1" \
|
||||||
|
--install_path libdoc="%{_mandir}/man3"
|
||||||
|
|
||||||
|
packlist=`find %{buildroot} -name .packlist`
|
||||||
|
[ -z "$packlist" ] && exit 1 || cat $packlist | \
|
||||||
|
sed "s,%buildroot,,g;s,.*/man/.*,&.gz,g" | \
|
||||||
|
sort -u > .packlist && rm $packlist
|
||||||
|
|
||||||
|
find %{buildroot}%{perl_vendorlib} \
|
||||||
|
-type d -depth -exec rmdir {} 2>/dev/null \;
|
||||||
|
|
||||||
|
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}"
|
||||||
|
rm -f .packlist
|
||||||
|
|
||||||
|
%files -f .packlist
|
||||||
|
%defattr(-,root,root)
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Nov 22 2012 Automatic Build System <autodist@mambasoft.it> 0.09-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Nov 05 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 0.08-2mamba
|
||||||
|
- automatic rebuild by autodist
|
||||||
|
|
||||||
|
* Mon Oct 20 2008 gil <puntogil@libero.it> 0.08-1mamba
|
||||||
|
- package created by autospec
|
Loading…
Reference in New Issue
Block a user