Overview
Comment: | Added script to sync man page to Fossil |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
dad30e7b99e3138843cf34a6c1c48796 |
User & Date: | rkeene on 2014-01-21 09:50:59 |
Other Links: | manifest | tags |
Context
2014-01-21
| ||
09:53 | Updated to only update page if it has changed check-in: 3907284219 user: rkeene tags: trunk | |
09:50 | Added script to sync man page to Fossil check-in: dad30e7b99 user: rkeene tags: trunk | |
09:43 | Updated README check-in: b208aaea3d user: rkeene tags: trunk | |
Changes
Renamed and modified makearch.info [92ad0b566c] to build/makearch.info [36596a59b1].
︙ | ︙ | |||
18 19 20 21 22 23 24 | # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date DOCS="README ChangeLog" DOC_HDR="HEADER" # This script is executed immediately after copying the files # to a temp directory to attempt to compile | | | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date DOCS="README ChangeLog" DOC_HDR="HEADER" # This script is executed immediately after copying the files # to a temp directory to attempt to compile BEFORE="build/pre.sh" # This script is executed immediately prior to creation of the # tarball AFTER="" # Files matching these (space-seperated) patterns are deleted TMPS="*.out makearch.info contrib HEADER autom4te.cache build" |
Added build/pre.sh version [be31b588ea].
> > > > > > | 1 2 3 4 5 6 | #! /bin/bash cd /home/rkeene/devel/freecolor || exit 1 groff -mandoc -Thtml < freecolor.1 | awk '/^<body>$/{ start = 1; next; } /^<\/body>$/{start = 0} (start == 1){ print $0 }' | fossil wiki commit Manual fossil sync |