File: rules

package info (click to toggle)
python-django-colorfield 0.11.0%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 368 kB
  • sloc: javascript: 2,510; python: 716; makefile: 14; sh: 2
file content (21 lines) | stat: -rwxr-xr-x 525 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
#!/usr/bin/make -f

export PYBUILD_NAME=django-colorfield

%:
	dh $@ --buildsystem=pybuild

override_dh_auto_clean:
	rm -f colorfield/static/jscolor/jscolor.min.js
	rm -rf colorfield/__pycache__/ tests/__pycache__/ .pybuild/
	rm -rf django_colorfield.egg-info/

override_dh_auto_make:
	uglifyjs colorfield/static/jscolor/jscolor.js > colorfield/static/jscolor/jscolor.min.js

override_dh_auto_install:
	dh_auto_install
	find debian/ -type f -name "*.html" -exec chmod 644 \{\} \;

override_dh_auto_test:
	python3 runtests.py