From 5184132cefbe62cfe9ae233d6592cd0d0fd3a6f9 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 21:01:41 +0100 Subject: [PATCH] package created by autospec [release 0.3.9-1mamba;Thu Aug 09 2012] --- README.md | 2 ++ build.spec | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 build.spec diff --git a/README.md b/README.md index 3e896a5..55745cd 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # build +build is a massively-parallel software build system implemented on top of GNU make. + diff --git a/build.spec b/build.spec new file mode 100644 index 0000000..ddb0724 --- /dev/null +++ b/build.spec @@ -0,0 +1,42 @@ +### AUTOUPDATE-OFF: 1 +Name: build +Version: 0.3.9 +Release: 1mamba +Summary: A massively-parallel software build system implemented on top of GNU make +Group: Development/Tools +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.codesynthesis.com/projects/build/ +Source: http://www.codesynthesis.com/download/build/0.3/build-%{version}.tar.bz2 +License: GPL +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +build is a massively-parallel software build system implemented on top of GNU make. + +%prep +%setup -q + +%build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall install_prefix=%{buildroot}%{_prefix} + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%dir %{_includedir}/build-0.3/ +%{_includedir}/build-0.3/* +%doc LICENSE + +%changelog +* Thu Aug 09 2012 Silvan Calarco 0.3.9-1mamba +- package created by autospec