-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from davide-scola/0.x-improve_help_text
[0.x] Manual pages
- Loading branch information
Showing
9 changed files
with
131 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,4 +42,5 @@ grenache-announce | |
# | ||
# Distribution | ||
# | ||
*.1 | ||
*.tar.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,9 @@ dnl implied. See the License for the specific language governing permissions | |
dnl and limitations under the License. | ||
|
||
AC_PREREQ(2.69) | ||
AC_INIT([grenache-cli], [0.6.1], [[email protected]]) | ||
AC_INIT([grenache-cli], [0.7.0], [[email protected]]) | ||
|
||
AC_SUBST([VERSION], [0.6.1]) | ||
AC_SUBST([VERSION], [0.7.0]) | ||
AC_SUBST([SB], [`$srcdir/shtool echo -n -e %B`]) | ||
AC_SUBST([EB], [`$srcdir/shtool echo -n -e %b`]) | ||
|
||
|
@@ -58,6 +58,7 @@ AC_PROG_LN_S | |
AC_PROG_MAKE_SET | ||
AC_PROG_LIBTOOL | ||
AC_PROG_AWK | ||
AM_MISSING_PROG([HELP2MAN], [help2man]) | ||
|
||
AX_PROG_JQ | ||
AX_PROG_CAT | ||
|
@@ -180,6 +181,7 @@ AX_MSG_BOLD([Writing output files]) | |
|
||
AC_CONFIG_FILES([ \ | ||
Makefile \ | ||
doc/Makefile \ | ||
m4/Makefile \ | ||
include/Makefile \ | ||
src/Makefile \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
############################################################################ | ||
# This file is part of Grenache Command Line Interface. # | ||
# # | ||
# Copyright (C) 2017, 2018 Davide Scola <[email protected]> # | ||
# # | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may # | ||
# not use this file except in compliance with the License. You may obtain # | ||
# a copy of the License at # | ||
# # | ||
# http://www.apache.org/licenses/LICENSE-2.0 # | ||
# # | ||
# Unless required by applicable law or agreed to in writing, software # | ||
# distributed under the License is distributed on an "AS IS" BASIS, # | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or # | ||
# implied. See the License for the specific language governing permissions # | ||
# and limitations under the License. # | ||
############################################################################ | ||
|
||
dist_man1_MANS = \ | ||
grenache-get.1 \ | ||
grenache-put.1 \ | ||
grenache-keygen.1 \ | ||
grenache-lookup.1 \ | ||
grenache-announce.1 | ||
|
||
MAINTAINERCLEANFILES = \ | ||
$(dist_man1_MANS) | ||
|
||
%.1: $(top_srcdir)/src/%.in $(top_srcdir)/doc/Makefile.am | ||
$(HELP2MAN) --no-info --output=$@ --version-string="$(PACKAGE_VERSION)" \ | ||
--name="manual page for $(notdir $(basename $<)) ($(PACKAGE_NAME)) $(PACKAGE_VERSION) on $(host_cpu)-$(host_os)" \ | ||
"${SHELL} $(basename $<)$(EXEEXT)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters