File: rules

package info (click to toggle)
pkgsync 1.27
  • links: PTS
  • area: main
  • in suites: buster
  • size: 140 kB
  • sloc: sh: 119; makefile: 22
file content (27 lines) | stat: -rwxr-xr-x 423 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
#!/usr/bin/make -f


build:
clean:
	dh_testdir
	dh_testroot
	dh_clean

binary-arch:
binary-indep:
	dh_testdir
	dh_testroot
	dh_install pkgsync /usr/sbin/
	dh_install nightly-pkgsync /etc/cron.daily/
	dh_installchangelogs
	dh_installdocs
	dh_installman
	dh_compress -XREADME.Debian
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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