2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
Files
build/jam_src/boost-jam.spec
Vladimir Prus 7db48a4950 Added support for building RPMs.
[SVN r12395]
2002-01-21 12:33:20 +00:00

49 lines
1.1 KiB
RPMSpec

Name: boost-jam
Version: 3.0
Summary: Build tool
Release: 1
Source: boost-jam-%{version}.src.tar.gz
Copyright: GPL
Group: unsorted
URL: http://www.boost.org
Packager: Vladimir Prus <ghost@cs.msu.su>
BuildRoot: /var/tmp/boost-jam-%{version}.root
%description
Boost Jam is a build tool based on FTJam, which in turn is based on
Perforce Jam. It contains significant improvements made to facilitate
its use in the Boost Build System, but should be backward compatible
with Perforce Jam.
Authors:
Perforce Jam : Cristopher Seiwald
FT Jam : David Turner
Boost Jam : David Abrahams
%prep
%setup -n boost-jam-%{version}
%build
make
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_docdir}/boost-jam
install -m 755 bin.linuxx86/jam $RPM_BUILD_ROOT%{_bindir}/jam
install -m 644 Jam.html Jambase.html Jamfile.html README RELNOTES INSTALL \
$RPM_BUILD_ROOT%{_docdir}/boost-jam
find $RPM_BUILD_ROOT -name CVS -type d -depth -exec rm -r {} \;
%files
%defattr(-,root,root)
%attr(755,root,root) /usr/bin/*
%doc %{_docdir}/boost-jam
%clean
rm -rf $RPM_BUILD_ROOT