diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2007-05-22 02:06:48 +0100 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2007-05-22 02:06:48 +0100 | 
| commit | 0eb061a87daba1e161555d26e224edcf98b1d86e (patch) | |
| tree | 08d7df1bbae2073d307b3c1811e255d904fa13b7 /debian/rules | |
| parent | Imported upstream version 0.52.7 (diff) | |
Imported Debian patch 0.52.7-1debian/0.52.7-1
Summary: Imported Debian patch 0.52.7-1
Keywords:
Imported sisu-0.52.7-1
into Git repository
Diffstat (limited to 'debian/rules')
| -rwxr-xr-x | debian/rules | 39 | 
1 files changed, 39 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..654265bf --- /dev/null +++ b/debian/rules @@ -0,0 +1,39 @@ +#!/usr/bin/make -f +#export DH_VERBOSE=1 + +build: + +clean: +	dh_testdir +	dh_testroot +	dh_clean + +install: build +	dh_testdir +	dh_testroot +	dh_clean -k +	dh_installdirs +	# Installing lintian overrides +	for lintian in debian/lintian/*; \ +	do \ +		install -D -m 644 $$lintian debian/`basename $$lintian`/usr/share/lintian/overrides/`basename $$lintian` || exit 1; \ +	done + +binary-arch: build install + +binary-indep: build install +	dh_testdir +	dh_testroot +	dh_installdocs README +	dh_installchangelogs CHANGELOG +	dh_installman +	dh_install +	dh_compress -X.rb -X.sst -X.ssm -X.ssi  +	dh_fixperms +	dh_installdeb +	dh_gencontrol +	dh_md5sums +	dh_builddeb + +binary: binary-indep binary-arch +.PHONY: clean build install binary-indep binary-arch binary  | 
