diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-12-29 20:09:47 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-12-29 20:09:47 (GMT) |
commit | d63f4e9c299f222e0826b126a0de206bc590d70c (patch) | |
tree | 1e79a73621bb964916bded33c0ff1e3ee8bf69fa /debian/rules | |
parent | bacdc106a584dc5034830e96fe67d132a72a127b (diff) |
inital 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..8ca02d1 --- /dev/null +++ b/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f +%: + dh $@ + +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/rhlibrary $$(pwd)/debian/tmp/usr/bin/ |