File: rules

package info (click to toggle)
libjs-bootswatch 3.3.7%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,340 kB
  • sloc: sh: 12; makefile: 11
file content (17 lines) | stat: -rwxr-xr-x 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f

UPSTREAM_GIT = https://github.com/thomaspark/bootswatch.git
include /usr/share/openstack-pkg-tools/pkgos.make

%:
	dh $@

override_dh_clean:
	dh_clean

override_dh_auto_build:
	# Recompress all bootstrap.css files
	set -e ; set -x ; for i in `find . -maxdepth 2 -iname bootstrap.css` ; do \
		CSSDIRNAME=`dirname $$i` ; \
		yui-compressor $$CSSDIRNAME/bootstrap.css -o $$CSSDIRNAME/bootstrap.min.css ; \
	done