diff options
author | Christian Pointner <equinox@helsinki.at> | 2015-07-17 01:27:52 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2015-07-17 01:27:52 (GMT) |
commit | fb352e9e1b900b06be003d51ac4bf9e42245010d (patch) | |
tree | a80be2777b6ac376fd2a4bae9753be85ceef3445 /debian/rules | |
parent | f4ddfc122c3948ddac6c5570c44531e7c1fa0960 (diff) |
added debian packaging
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ccd28ea --- /dev/null +++ b/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f +%: + dh $@ --with=systemd + +override_dh_auto_configure: + +override_dh_auto_build: + $(MAKE) build + +override_dh_auto_clean: + $(MAKE) distclean + +override_dh_auto_install: + install -d $$(pwd)/debian/tmp/usr/bin/ + install -m 755 $$(pwd)/bin/rhrdtime $$(pwd)/debian/tmp/usr/bin/ |