This is an automated email from the git hooks/post-receive script. afif-guest pushed a commit to branch master in repository falconkit.
commit 634a4fe9c2533294e3d3444541fad69f20645819 Author: Afif Elghraoui <[email protected]> Date: Sun Dec 20 23:09:28 2015 -0800 Set up multi-manpages --- debian/falconkit.1 | 36 ++++++++++++++++++++++++++++++++++++ debian/falconkit.manpages | 1 + debian/falconkit0.1.1 | 41 +++++++++++++++++++++++++++++++++++++++++ debian/falconkit0.1.manpages | 1 + debian/rules | 16 ++++++++++++++++ 5 files changed, 95 insertions(+) diff --git a/debian/falconkit.1 b/debian/falconkit.1 new file mode 100644 index 0000000..93533ae --- /dev/null +++ b/debian/falconkit.1 @@ -0,0 +1,36 @@ +.TH FALCONKIT 1 "December 2015" +.SH NAME +falconkit \- genome assembly toolkit +.PP +falcontask +.br +fc_actg_coordinate +.br +fc_consensus +.br +fc_contig_annotate +.br +fc_ctg_link_analysis +.br +fc_dedup_a_tigs +.br +fc_graph_to_contig +.br +fc_graph_to_utgs +.br +fc_ovlp_filter +.br +fc_ovlp_stats +.br +fc_ovlp_to_graph +.SH DESCRIPTION +\fBfalcon\fP is a program that... +.SH OPTIONS +A summary of options is included below. +For a complete description, see the programs' individual help menus +or the online documentation. +.TP +.B \-h, \-\-help +Show summary of options. +.SH SEE ALSO +https://github.com/PacificBiosciences/FALCON/wiki/Manual diff --git a/debian/falconkit.manpages b/debian/falconkit.manpages new file mode 100644 index 0000000..654ff0d --- /dev/null +++ b/debian/falconkit.manpages @@ -0,0 +1 @@ +debian/falconkit.1 diff --git a/debian/falconkit0.1.1 b/debian/falconkit0.1.1 new file mode 100644 index 0000000..efd2495 --- /dev/null +++ b/debian/falconkit0.1.1 @@ -0,0 +1,41 @@ +.TH FALCONKIT0.1 1 "December 2015" +.SH NAME +falconkit0.1 \- genome assembly toolkit (legacy version) +.PP +falcon_asm +.br +falcon_asm_s +.br +falcon_dedup +.br +falcon_fixasm +.br +falcon_overlap +.br +falcon_overlap2 +.br +falcon_qrm +.br +falcon_qrm_0 +.br +falcon_sense \- simple multi-processor consensus sequence generator +.br +falcon_ucns_data +.br +falcon_utgcns +.br +get_rdata +.br +redis_graph +.br +remove_dup_ctg +.br +overlapper +.SH DESCRIPTION +\fBfalcon\fP is a program that... +.SH OPTIONS +A summary of options is included below. +For a complete description, see the programs' individual help menus. +.TP +.B \-h, \-\-help +Show summary of options. diff --git a/debian/falconkit0.1.manpages b/debian/falconkit0.1.manpages new file mode 100644 index 0000000..9ddb014 --- /dev/null +++ b/debian/falconkit0.1.manpages @@ -0,0 +1 @@ +debian/falconkit0.1.1 diff --git a/debian/rules b/debian/rules index 3e1ea55..4e72a3e 100755 --- a/debian/rules +++ b/debian/rules @@ -10,6 +10,11 @@ export PYBUILD_NAME=falconkit # for developers' use only (having hardcoded local paths) nonscripts += get_ovl.sh ovlp_filter.sh +define link-man = +ln -s $2 \ +$(CURDIR)/debian/$1/usr/share/man/man1/`basename $3` +endef + %: LC_ALL=C.UTF-8 dh $@ --with python2 --buildsystem=pybuild @@ -27,6 +32,17 @@ override_dh_install: mv $(CURDIR)/debian/python-falconkit/usr/bin/* $(CURDIR)/debian/falconkit/usr/bin rename 's/\.py//' $(CURDIR)/debian/falconkit*/usr/bin/* +override_dh_link: + for script in $(CURDIR)/debian/falconkit0.1/usr/bin/*; \ + do \ + $(call link-man,falconkit0.1,falconkit0.1.1,$$script.1); \ + done + for script in $(CURDIR)/debian/falconkit/usr/bin/*; \ + do \ + $(call link-man,falconkit,falconkit.1,$$script.1); \ + done + dh_link + override_dh_fixperms: chmod -x debian/$(DEB_SOURCE)/usr/share/doc/$(DEB_SOURCE)/examples/fc_run_LG.cfg dh_fixperms -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/falconkit.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
