File: rules

package info (click to toggle)
previsat 7.2.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,044 kB
  • sloc: cpp: 26,063; xml: 21,489; makefile: 11; sh: 5
file content (20 lines) | stat: -rwxr-xr-x 443 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh $@ --buildsystem=cmake

override_dh_auto_clean:
	dh_auto_clean

override_dh_auto_install:
	dh_auto_install
	: # on amd64 architecture, the executable is in
	: # obj-x86_64-linux-gnu/PreviSat
	install -d debian/previsat/usr/bin
	install -m 755 $$(find obj* -name PreviSat) debian/previsat/usr/bin

DESTDIR = $(CURDIR)/debian/previsat