|
Revision 1, 1.2 kB
(checked in by root, 3 years ago)
|
initial import
|
| Line | |
|---|
| 1 |
Summary: Beowulf Performance Suite |
|---|
| 2 |
name: bps |
|---|
| 3 |
Version:1.3 |
|---|
| 4 |
Release: 1 |
|---|
| 5 |
Copyright: GPL and those of respective owners |
|---|
| 6 |
Group: Benchmarks |
|---|
| 7 |
Source: bps-%{PACKAGE_VERSION}.tgz |
|---|
| 8 |
URL: www.basement-supercomputing.com |
|---|
| 9 |
Distribution: FC-2 |
|---|
| 10 |
Vendor: Douglas Eadline |
|---|
| 11 |
Packager: Douglas@Eadline.com |
|---|
| 12 |
%define ver %{PACKAGE_VERSION}-%{PACKAGE_RELEASE} |
|---|
| 13 |
Requires: perl,gnuplot,expect |
|---|
| 14 |
|
|---|
| 15 |
%description |
|---|
| 16 |
A collection of benchmark programs which run from command line |
|---|
| 17 |
along with an output formatter. These benchmarks are intended |
|---|
| 18 |
for use on Beowulf clusters. |
|---|
| 19 |
%prep |
|---|
| 20 |
%setup -n bps |
|---|
| 21 |
%build |
|---|
| 22 |
./build-all |
|---|
| 23 |
%install |
|---|
| 24 |
/bin/mkdir -p /opt/bps |
|---|
| 25 |
/bin/cp -R src/ /opt/bps/ |
|---|
| 26 |
/bin/cp -R bin/ /opt/bps/ |
|---|
| 27 |
/bin/mkdir -p /opt/bps/man |
|---|
| 28 |
/bin/mkdir -p /opt/bps/man/man1 |
|---|
| 29 |
/bin/cp -R man/bps.1 /opt/bps/man/man1 |
|---|
| 30 |
/bin/cp src/bps.sh /etc/profile.d/ |
|---|
| 31 |
/bin/cp src/bps.csh /etc/profile.d/ |
|---|
| 32 |
%post |
|---|
| 33 |
%files |
|---|
| 34 |
%defattr(-,root,root) |
|---|
| 35 |
/opt/bps/bin |
|---|
| 36 |
/opt/bps/man |
|---|
| 37 |
/opt/bps/src/bonnie++-1.01c.tgz |
|---|
| 38 |
/opt/bps/src/netperf-2.1pl3.tar.gz |
|---|
| 39 |
/opt/bps/src/npb.tar.gz |
|---|
| 40 |
/opt/bps/src/unixbench.tar.gz |
|---|
| 41 |
/opt/bps/src/lmbench-2.0-patch1.tgz |
|---|
| 42 |
/opt/bps/src/netpipe.tar.gz |
|---|
| 43 |
/opt/bps/src/stream.tar.gz |
|---|
| 44 |
/etc/profile.d/bps.csh |
|---|
| 45 |
/etc/profile.d/bps.sh |
|---|
| 46 |
%doc README tests.html LICENSE |
|---|
| 47 |
|
|---|