diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-09-16 22:09:22 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-09-16 22:09:22 -0300 |
commit | 14071b3ca8f6c17ed9eea5b2203c753851c88dc9 (patch) | |
tree | c6126ba98bb3808183b48a49cf2076153dad825e | |
parent | 58d263f79c47a06ddb8fe54ad27ef738fef5e642 (diff) | |
download | keyringer-14071b3ca8f6c17ed9eea5b2203c753851c88dc9.tar.gz keyringer-14071b3ca8f6c17ed9eea5b2203c753851c88dc9.tar.bz2 |
Makefile fixes, setting section on debian/control
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | debian/control | 2 |
2 files changed, 7 insertions, 3 deletions
@@ -37,10 +37,14 @@ install_doc: $(INSTALL) -D --mode=0644 LICENSE $(DESTDIR)/$(PREFIX)/share/doc/$(PACKAGE)/LICENSE install_man: - $(INSTALL) -D --mode=0644 share/man/keyringer.1 $(DESTDIR)/$(PREFIX)/share/man/man1 + $(INSTALL) -D --mode=0644 share/man/keyringer.1 $(DESTDIR)/$(PREFIX)/share/man/man1/keyringer.1 + +# TODO: zsh completion +install_completion: + $(INSTALL) -D --mode=0644 lib/keyringer/completions/bash/keyringer $(DESTDIR)/$(PREFIX)/etc/bash_completion.d/keyringer install: clean - @make install_lib install_share install_bin install_doc install_man + @make install_lib install_share install_bin install_doc install_man install_completion build_man: pandoc -s -w man share/man/keyringer.1.mdwn -o share/man/keyringer.1 diff --git a/debian/control b/debian/control index 3a1751a..665d182 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Source: keyringer -Section: unknown +Section: main Priority: extra Maintainer: Silvio Rhatto <rhatto@riseup.net> Build-Depends: debhelper (>= 7.0.50~) |