File: rules

package info (click to toggle)
flickrbackup 0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 76 kB
  • sloc: python: 225; makefile: 13
file content (19 lines) | stat: -rwxr-xr-x 398 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
#!/usr/bin/make -f

PFX=$(CURDIR)/debian/flickrbackup

%:
	dh  $@

override_dh_auto_build:
	dh_auto_build
	help2man --name='backup your flickr photos' --section=1 --no-info ./flickrbackup > flickrbackup.1

override_dh_auto_install:
	dh_auto_install
	install -m 755 flickrbackup $(PFX)/usr/bin/flickrbackup

override_dh_auto_clean:
	dh_auto_clean
	find . -name "*.pyc" -delete
	rm -f flickrbackup.1