source: ProjectBuilder/devel/pbconf/projectbuilder/rpm/pb.spec@ 25

Last change on this file since 25 was 25, checked in by Bruno Cornec, 17 years ago

code of build2pkg done. tests begin

File size: 1.3 KB
RevLine 
[14]1#
2# $Id$
3#
4
5Summary: Project Builder aka pb is a tool to produce packages for multiple distributions
6Summary(fr): Project Builder ou pb est un programme pour produire des paquets pour diverses distributions
7
8Name: pb
[15]9Version: PBVER
[16]10Release: PBTAG
[14]11License: GPL
[15]12Group: PBGRP
[14]13Url: http://www.mondorescue.org
[15]14Source: PBSRC
[14]15BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -u -n)
16BuildRequires:
[25]17BuildArch: noarch
[16]18Requires: perl >= 5.8.8, PBDEP
[14]19
20%description
21Project Builder aka pb is a tool to produce packages for multiple distributions.
22It does that by minimizing the duplication of information required and a set a
23very simple configuration files.
24
25%description -l fr
26Project Builder ou pb est un programme pour produire des paquets pour diverses distributions.
27Il réalise cela en minimisant la duplication des informations requises et par un jeu de
28fichiers de configuration très simples.
29
30%prep
31%setup -q
32
33%build
34%configure
35make %{?_smp_mflags} VERSION=%{version}
36
37%install
38%{__rm} -rf $RPM_BUILD_ROOT
39make DESTDIR=$RPM_BUILD_ROOT install
40
41%clean
42%{__rm} -rf $RPM_BUILD_ROOT
43
44%files
45%defattr(-,root,root)
46%config(noreplace) %{_sysconfdir}/%{name}/%{name}.pb
47%doc ChangeLog svn.log
48%doc INSTALL COPYING README TODO AUTHORS NEWS
49
50%{_sbindir}/*
51#%{_mandir}/man8/*
52
53%changelog
[17]54PBLOG
Note: See TracBrowser for help on using the repository browser.