]> git.pld-linux.org Git - packages/jam.git/blob - jam.spec
6e35f676d8468fd9fb9bf37655a08e09a308d829
[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:        7
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 -T -c
26 tar xvf %SOURCE0
27 %{__mv} %{name}-%{version}/* .
28
29 %build
30 # CFLAGS for jam bootstrap, OPTIM for build using jam
31 %{__make} \
32         CC="%{__cc}" \
33         CFLAGS="%{rpmcflags}" \
34         OPTIM="%{rpmcflags}" \
35         YACC="bison -y"
36
37 %install
38 rm -rf $RPM_BUILD_ROOT
39 install -d $RPM_BUILD_ROOT%{_bindir}
40
41 install bin.*/jam $RPM_BUILD_ROOT%{_bindir}
42
43 %clean
44 rm -rf $RPM_BUILD_ROOT
45
46 %files
47 %defattr(644,root,root,755)
48 %doc RELNOTES README *.html
49 %attr(755,root,root) %{_bindir}/*
This page took 0.049594 seconds and 2 git commands to generate.