File: rules

package info (click to toggle)
globus-gram-job-manager-slurm 3.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 332 kB
  • sloc: perl: 567; sh: 502; makefile: 49
file content (36 lines) | stat: -rwxr-xr-x 865 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/make -f
# -*- makefile -*-

name = globus-gram-job-manager-slurm

INSTALLDIR = debian/tmp

_docdir = /usr/share/doc/$(name)

perl_vendorlib = $(shell eval "`perl -V:installvendorlib`"; echo $$installvendorlib)

%:
	dh $@

override_dh_auto_configure:
	MPIRUN=no \
	SRUN=/usr/bin/srun \
	SBATCH=/usr/bin/sbatch \
	SALLOC=/usr/bin/salloc \
	SCANCEL=/usr/bin/scancel \
	SCONTROL=/usr/bin/scontrol \
	dh_auto_configure -- \
	   --disable-static \
	   --includedir=/usr/include/globus \
	   --libexecdir=/usr/share/globus \
	   --docdir=$(_docdir) \
	   --with-perlmoduledir=$(perl_vendorlib)

override_dh_auto_install:
	dh_auto_install --destdir=$(INSTALLDIR)

	# Remove jobmanager-slurm from install dir - leave it for admin config
	rm $(INSTALLDIR)/etc/grid-services/jobmanager-slurm

	# Remove installed license files
	rm $(INSTALLDIR)$(_docdir)/*LICENSE*