Search
j0ke.net Open Build Service
>
Projects
>
devel
>
jam
> Changes
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
Changes of Revision 3
[-]
[+]
Added
jam.spec
@@ -0,0 +1,56 @@ +# +# spec file for package jam (Version 2.5) +# +# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. +# This file and all modifications and additions to the pristine +# package are under the same license as the package itself. +# +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +Name: jam +BuildRequires: bison +URL: http://www.perforce.com/jam/jam.html +Version: 2.5 +Release: 10 +License: Other uncritical OpenSource License +BuildRoot: %{_tmppath}/%{name}-%{version}-build +Group: Development/Tools/Building +Source: jam-%{version}.tar +Summary: make-like program + +%description +Jam is a make replacement that makes building simple things simple and +building complicated things manageable. + + + +Authors: +-------- + Christopher Seiwald + Perforce Software, Inc. + +%prep +%setup + +%build +make + +%install +mkdir -p $RPM_BUILD_ROOT/usr/bin +install -m 755 jam0 $RPM_BUILD_ROOT/usr/bin/jam + +%clean +rm -rf "$RPM_BUILD_ROOT" + +%files +%defattr(-,root,root) +%doc Jam.html Jambase.html Jamfile.html Porting README RELNOTES +/usr/bin/jam + +%changelog +* Thu Mar 29 2007 - rguenther@suse.de +- add bison BuildRequires +* Wed Dec 27 2006 - sndirsch@suse.de +- created package