]> git.pld-linux.org Git - packages/jam.git/blob - jam.spec
fb88cd9be3b9582a7f67c40828e6f85eae652fe1
[packages/jam.git] / jam.spec
1 Summary:        Jam - make replacement
2 Summary(pl.UTF-8):      Jam - zastępca make
3 Name:           jam
4 Version:        2.5
5 Release:        5
6 Epoch:          1
7 License:        distributable (see README)
8 Group:          Development/Building
9 Source0:        ftp://ftp.perforce.com/pub/jam/%{name}-%{version}.tar
10 # Source0-md5:  d340f3c73d16a1206d0e8c88a66428e7
11 URL:            http://www.perforce.com/jam/jam.html
12 BuildRequires:  bison
13 Obsoletes:      boost-jam
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 Jam is a make(1) replacement that makes building simple things simple
18 and building complicated things manageable.
19
20 %description -l pl.UTF-8
21 Jam to zamiennik make(1), który czyni budowanie prostych rzeczy
22 prostym, a budowanie skomplikowanych rzeczy wykonalnym.
23
24 %prep
25 %setup -q
26
27 %build
28 # CFLAGS for jam bootstrap, OPTIM for build using jam
29 %{__make} \
30         CC="%{__cc}" \
31         CFLAGS="%{rpmcflags}" \
32         OPTIM="%{rpmcflags}" \
33         YACC="bison -y"
34
35 %install
36 rm -rf $RPM_BUILD_ROOT
37 install -d $RPM_BUILD_ROOT%{_bindir}
38
39 install bin.*/jam $RPM_BUILD_ROOT%{_bindir}
40
41 %clean
42 rm -rf $RPM_BUILD_ROOT
43
44 %files
45 %defattr(644,root,root,755)
46 %doc RELNOTES README *.html
47 %attr(755,root,root) %{_bindir}/*
This page took 0.037489 seconds and 2 git commands to generate.