-
Notifications
You must be signed in to change notification settings - Fork 2
/
slurm-drmaa.spec
46 lines (37 loc) · 1.02 KB
/
slurm-drmaa.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Name: slurm-drmaa
Version: 1.2.0
Release: 1%{?dist}
Summary: PSNC DRMAA for SLURM
Group: Development/Libraries
License: GPLv3+
URL: http://apps.man.poznan.pl/trac/slurm-drmaa
Requires: slurm
BuildRequires: slurm-devel
BuildRoot: %{_tmppath}/%{name}-%{version}
Source: %{name}-%{version}.tar.gz
%description
PSNC DRMAA for Simple Linux Utility for Resource Management (SLURM) is an
implementation of Open Grid Forum DRMAA 1.0 (Distributed Resource Management
Application API) specification for submission and control of jobs to SLURM.
Using DRMAA, grid applications builders, portal developers and ISVs can use the
same high-level API to link their software with different cluster/resource
management systems.
%prep
%setup
%build
%configure
%install
rm -rf "$RPM_BUILD_ROOT"
mkdir -p "$RPM_BUILD_ROOT"
DESTDIR="$RPM_BUILD_ROOT" make install
rm -rf "$RPM_BUILD_ROOT/etc"
%clean
rm -rf "$RPM_BUILD_ROOT"
%files
%doc COPYING
%doc NEWS
%doc README
%doc slurm_drmaa/slurm_drmaa.conf.example
%{_bindir}/*
%{_includedir}/*
%{_libdir}/*