source: projects/specs/branches/6/p/perl-MIME-Lite/perl-MIME-Lite-vl.spec @ 3739

Revision 3739, 2.0 KB checked in by Takemikaduchi, 13 years ago (diff)

rebuild with perl-5.12.3

Line 
1Name:           perl-MIME-Lite
2Version:        3.01
3Release:        6%{?_dist_release}
4Summary:        MIME::Lite - low-calorie MIME generator
5
6Group:          Development/Libraries
7License:        GPL or Artistic
8URL:            http://search.cpan.org/dist/MIME-Lite/
9Source0:        http://www.cpan.org/authors/id/Y/YV/YVES/MIME-Lite-%{version}.tar.gz
10BuildRoot:      %{_tmppath}/%{name}-%{version}-root
11
12BuildArch:      noarch
13BuildRequires:  perl >= 1:5.6.1
14BuildRequires:  perl-MIME-Types
15Requires:  perl >= %(eval "`%{__perl} -V:version`"; echo $version)
16
17%description
18MIME::Lite is intended as a simple, standalone module for generating (not
19parsing!) MIME messages... specifically, it allows you to output a simple,
20decent single- or multi-part message with text or binaryattachments.  It does
21not require that you have the Mail:: or MIME:: modules installed.
22
23%prep
24%setup -q -n MIME-Lite-%{version}
25
26%build
27%{__perl} Makefile.PL INSTALLDIRS=vendor
28make %{?_smp_mflags}
29
30%install
31rm -rf $RPM_BUILD_ROOT
32make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
33find $RPM_BUILD_ROOT -type f -a \( -name .packlist \
34  -o \( -name '*.bs' -a -empty \) \) -exec rm -f {} ';'
35find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
36
37%check || :
38make test
39
40%clean
41rm -rf $RPM_BUILD_ROOT
42
43%files
44%defattr(-,root,root,-)
45%doc changes.pod README examples contrib 
46%{perl_vendorlib}/*
47%{_mandir}/man3/*.3*
48
49
50%changelog
51* Sat Apr 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.01-6
52- rebuild with perl-5.12.3
53
54* Tue Nov 13 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.01-5vl1
55- Initial build for Vine Linux
56
57* Sun Sep 10 2006 Mike McGrath <imlinux@gmail.com> 3.01-5
58- Rebuild
59
60* Thu Mar 30 2006 Mike McGrath <imlinux@gmail.com> 3.01-4
61- New maintainer
62
63* Thu Jun 23 2005 Ralf Corsepius <ralf@links2linux.de> 3.01-3
64- Add %%{dist}.
65
66* Wed Apr 06 2005 Hunter Matthews <thm@duke.edu> 3.01-2
67- Review suggestions from José Pedro Oliveira
68
69* Fri Mar 18 2005 Hunter Matthews <thm@duke.edu> 3.01-1
70- Initial packageing.
Note: See TracBrowser for help on using the repository browser.