File: rules

package info (click to toggle)
ruby-beautify 0.97.4-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 328 kB
  • ctags: 77
  • sloc: ruby: 628; makefile: 8
file content (16 lines) | stat: -rwxr-xr-x 371 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f

# Check dependencies during build:
export GEM2DEB_TEST_RUNNER = --check-dependencies

%:
	dh $@ --buildsystem=ruby --with ruby

# Install upstream changelog
override_dh_installchangelogs:
	dh_installchangelogs WHATSNEW.md

# Remove tmp directory (created if tests are run)
override_dh_auto_install:
	dh_auto_install
	if [ -d tmp ]; then rmdir tmp; fi