diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..1465b319 --- /dev/null +++ b/debian/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f + +clean: + dh_testdir + dh_testroot + dh_clean + +build: + +install: + +binary: binary-indep + +binary-arch: + +binary-indep: + dh_testdir + dh_testroot + dh_installdocs README + dh_installchangelogs CHANGELOG + dh_installman + dh_install + dh_lintian + dh_compress -X.rb -X.ssi -X.ssm -X.sst -X.yml + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +.PHONY: clean build install binary binary-arch binary-indep |