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

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

Begin to deal with filters

File size: 1.2 KB
Line 
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
9Version: PBVER
10Release: PBREV
11License: GPL
12Group: PBGRP
13Url: http://www.mondorescue.org
14Source: PBSRC
15BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -u -n)
16BuildRequires:
17OBS
18Requires: perl >= 5.8.8
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
Note: See TracBrowser for help on using the repository browser.