diff options
author | Nick White <git@njw.me.uk> | 2012-09-12 00:27:33 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2012-09-12 00:27:33 +0100 |
commit | 154fe9fbdb388e618a9b62cc61e8a3bbc3a4b82c (patch) | |
tree | 828f1fcbf03a4cd2e57fe8ff99d3215e27171fdb /debian/rules | |
parent | 6414252d4cfa3b901d43834d7ae4ff4a577176ab (diff) |
Add basic debhelper setup
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c30cbf5 --- /dev/null +++ b/debian/rules @@ -0,0 +1,17 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ + +override_dh_auto_install: + $(MAKE) DESTDIR=$(CURDIR)/debian/getxbook PREFIX=/usr install + dh_install debian/getxbook.desktop usr/share/applications/ |