source: projects/specs/trunk/p/perl-ExtUtils-Depends/perl-ExtUtils-Depends-vl.spec @ 521

Revision 521, 2.2 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary:        Easily build XS extensions that depend on XS extensions
2Name:           perl-ExtUtils-Depends
3Version:        0.300
4Release:        1%{?_dist_release}
5
6License:        GPL+ or Artistic
7Group:          Development/Libraries
8URL:            http://search.cpan.org/dist/ExtUtils-Depends/
9Source0:        http://www.cpan.org/authors/id/T/TS/TSCH/ExtUtils-Depends-%{version}.tar.gz
10BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
11BuildArch:      noarch
12BuildRequires:  perl(ExtUtils::MakeMaker)
13BuildRequires:  perl(Test::More)
14Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
15
16%description
17This module tries to make it easy to build Perl extensions that use
18functions and typemaps provided by other perl extensions. This means that a
19perl extension is treated like a shared library that provides also a C and
20an XS interface besides the perl one.
21
22%prep
23%setup -q -n ExtUtils-Depends-%{version}
24
25%build
26%{__perl} Makefile.PL INSTALLDIRS=vendor
27make %{?_smp_mflags}
28
29%install
30rm -rf $RPM_BUILD_ROOT
31
32make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
33
34find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
35find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
36
37%{_fixperms} $RPM_BUILD_ROOT/*
38
39%check
40make test
41
42%clean
43rm -rf $RPM_BUILD_ROOT
44
45%files
46%defattr(-,root,root,-)
47%doc Changes README
48%{perl_vendorlib}/*
49%{_mandir}/man3/*
50
51%changelog
52* Mon Jul 07 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.300-1
53- new upstream release
54- build on perl-5.10
55
56* Wed Aug 22 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.205-5vl1
57- Initial build for Vine
58
59* Fri Sep  8 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.205-5
60- Rebuild for FC6.
61
62* Wed Feb 15 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.205-4
63- Rebuild for FC5 (perl 5.8.8).
64
65* Thu Dec 29 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.205-3
66- Dist tag.
67
68* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.205-2
69- rebuilt
70
71* Tue Feb 15 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.205-1
72- Update to 0.205.
73
74* Sun Oct  3 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.204-0.fdr.1
75- Update to 0.204.
76
77* Sun Jul 18 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.202-0.fdr.1
78- First build.
Note: See TracBrowser for help on using the repository browser.