File: rules

package info (click to toggle)
midge 0.2.41-2.1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 576 kB
  • ctags: 155
  • sloc: perl: 5,508; modula3: 1,846; lisp: 869; makefile: 34; sh: 20
file content (55 lines) | stat: -rwxr-xr-x 1,089 bytes parent folder | download
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
47
48
49
50
51
52
53
54
55
#!/usr/bin/make -f

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

# This is the debhelper compatibility version to use.
#export DH_COMPAT=4


build: midi2mg.pl midge.pl
	dh_testdir

	# Add here commands to compile the package.
	echo "#!/usr/bin/perl" | cat - midge.pl >midge && chmod +x midge
	echo "#!/usr/bin/perl" | cat - midi2mg.pl >midi2mg && chmod +x midi2mg

clean:
	dh_testdir
	dh_testroot
	rm -f midge midi2mg

	dh_clean

install: build midge midi2mg
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	# Add here commands to install the package into debian/midge.
	dh_install
	dh_installdocs
	dh_installexamples

# Build architecture-independent files here.
binary-indep: build install
	dh_testdir
	dh_testroot
	dh_installemacsen
	dh_installman midge.1 midi2mg.1
	dh_installchangelogs CHANGELOG
	dh_link
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_perl
	dh_gencontrol
	dh_md5sums
	dh_builddeb

# Build architecture-dependent files here.
binary-arch: ;

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure