File: rules

package info (click to toggle)
pwman3 0.0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 280 kB
  • ctags: 334
  • sloc: python: 3,637; makefile: 13
file content (18 lines) | stat: -rwxr-xr-x 276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f

dh_auto_build:
	python setup.py build
	dh_build

dh_auto_install:
	python setup.py install --root=$(CURDIR)/debian/pwman3
	dh_install

dh_auto_clean:
	-rm -rf build
	python setup.py clean
	find . -name *.pyc | xargs rm -f
	dh_clean

%:
	dh --with quilt $@