File: rules

package info (click to toggle)
debarchiver 0.11.3
  • links: PTS
  • area: main
  • in suites: buster
  • size: 724 kB
  • sloc: perl: 1,599; sh: 109; makefile: 92
file content (19 lines) | stat: -rwxr-xr-x 540 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f

override_dh_auto_build:
	# Add here commands to compile the package.
	$(MAKE)

override_dh_auto_clean:
	# Add here commands to clean up after the build process.
	$(MAKE) clean

override_dh_auto_install:
	# Add here commands to install the package into debian/debarchiver.
	$(MAKE) install	DESTDIR=$(CURDIR)/debian/debarchiver
	mkdir -p $(CURDIR)/debian/debarchiver/usr/share/lintian/overrides
	install -m644 debian/debarchiver.override \
		$(CURDIR)/debian/debarchiver/usr/share/lintian/overrides/debarchiver

%:
	dh $@