File: rules

package info (click to toggle)
jquery-typeahead.js 2.7.6%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 440 kB
  • ctags: 82
  • sloc: makefile: 11
file content (15 lines) | stat: -rwxr-xr-x 360 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	mkdir build
	cp src/jquery.typeahead.js build
	uglifyjs -o build/jquery.typeahead.min.js build/jquery.typeahead.js
	pyscss -o build/jquery.typeahead.min.css src/jquery.typeahead.scss
	pyscss -C -o build/jquery.typeahead.css src/jquery.typeahead.scss

override_dh_auto_clean:
	dh_auto_clean
	rm -rf build