| Revision 637,
1.4 KB
checked in by bruno, 5 years ago
(diff) |
- Fix rpmlint warnings
- Adapt for 0.9.5 of pb the pbcl
|
| Line | |
|---|
| 1 | # |
|---|
| 2 | # $Id$ |
|---|
| 3 | # |
|---|
| 4 | %define perlvendorlib %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib) |
|---|
| 5 | %define srcname PBPKG |
|---|
| 6 | |
|---|
| 7 | Summary: Project Builder aka pb is a tool to produce packages for multiple distributions |
|---|
| 8 | Summary(fr): Project Builder ou pb produit des paquets pour diverses distributions |
|---|
| 9 | |
|---|
| 10 | Name: PBPKG |
|---|
| 11 | Version: PBVER |
|---|
| 12 | Release: PBTAGPBSUF |
|---|
| 13 | License: GPL |
|---|
| 14 | Group: PBGRP |
|---|
| 15 | Url: http://trac.project-builder.org |
|---|
| 16 | Source: PBREPO/PBSRC |
|---|
| 17 | BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -u -n) |
|---|
| 18 | BuildArch: noarch |
|---|
| 19 | Requires: perl >= 5.8.4, perl-DateManip, perl-ProjectBuilder, rpm-build, PBDEP |
|---|
| 20 | |
|---|
| 21 | %description |
|---|
| 22 | PBDESC |
|---|
| 23 | |
|---|
| 24 | %description -l fr |
|---|
| 25 | Project Builder ou pb est un programme pour produire des paquets pour |
|---|
| 26 | diverses distributions. |
|---|
| 27 | Il réalise cela en minimisant la duplication des informations requises |
|---|
| 28 | et par un jeu de fichiers de configuration trÚs simples. |
|---|
| 29 | |
|---|
| 30 | %prep |
|---|
| 31 | %setup -q |
|---|
| 32 | |
|---|
| 33 | %build |
|---|
| 34 | %{__perl} Makefile.PL INSTALLDIRS=vendor PBKEYWORD=${RPM_BUILD_ROOT}/PBFINALDIR |
|---|
| 35 | make |
|---|
| 36 | |
|---|
| 37 | %install |
|---|
| 38 | %{__rm} -rf $RPM_BUILD_ROOT |
|---|
| 39 | make DESTDIR=${RPM_BUILD_ROOT} install |
|---|
| 40 | find ${RPM_BUILD_ROOT} -type f -name perllocal.pod -o -name .packlist -o -name '*.bs' -a -size 0 | xargs rm -f |
|---|
| 41 | find ${RPM_BUILD_ROOT} -type d -depth | xargs rmdir --ignore-fail-on-non-empty |
|---|
| 42 | |
|---|
| 43 | %check |
|---|
| 44 | make test |
|---|
| 45 | |
|---|
| 46 | %clean |
|---|
| 47 | %{__rm} -rf $RPM_BUILD_ROOT |
|---|
| 48 | |
|---|
| 49 | %files |
|---|
| 50 | %defattr(-,root,root) |
|---|
| 51 | %doc NEWS AUTHORS |
|---|
| 52 | %doc INSTALL COPYING README |
|---|
| 53 | |
|---|
| 54 | %{perlvendorlib}/* |
|---|
| 55 | %{_bindir}/* |
|---|
| 56 | %{_mandir}/man1/* |
|---|
| 57 | %{_mandir}/man3/* |
|---|
| 58 | |
|---|
| 59 | %changelog |
|---|
| 60 | PBLOG |
|---|
Note: See
TracBrowser
for help on using the repository browser.