From de5cab5f16292ba4694ad7a1922a2f077244c481 Mon Sep 17 00:00:00 2001 From: david parsons Date: Sat, 1 Mar 2008 15:13:28 -0800 Subject: [PATCH] 1.1.2a just adds INSTALL and README files. --- INSTALL | 38 ++++++++++++++++++++++++++++++++++++++ README | 16 ++++++++++++++++ VERSION | 2 +- 3 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 INSTALL create mode 100644 README diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..d8895be --- /dev/null +++ b/INSTALL @@ -0,0 +1,38 @@ + + HOW TO BUILD AND INSTALL DISCOUNT + +1) Unpacking the distribution + +The DISCOUNT sources are distributed in tarballs. After extracting from +the tarball, you should end up with all the source and build files in the +directory + discount-(version) + +2) Installing the distribution + +DISCOUNT uses configure.sh to set itself up for compilation. To run +configure, just do ``./configure.sh'' and it will check your system for +build dependencies and build makefiles for you. If configure.sh finishes +without complaint, you can then do a ``make'' to compile everything and a +``make install'' to install the binaries. + +Configure.sh has a few options that can be set: + +--src=DIR where the source lives (.) +--prefix=DIR where to install the final product (/usr/local) +--execdir=DIR where to put executables (prefix/bin) +--sbindir=DIR where to put static executables (prefix/sbin) +--confdir=DIR where to put configuration information (/etc) +--libdir=DIR where to put libraries (prefix/lib) +--libexecdir=DIR where to put private executables +--mandir=DIR where to put manpages +--enable-dl-tag Use the DL tag extension +--enable-pandoc-header Use pandoc-style header blocks +--with-tabstops=N Set tabstops to N characters (default is 4) + +3) Installing sample programs and manpages + +The standard ``make install'' rule just installs the binaries. If you +want to install the sample programs, they are installed with +``make install.samples''; to install manpages, ``make install.man''. +A shortcut to install everything is ``make install.everything'' diff --git a/README b/README new file mode 100644 index 0000000..1857bc8 --- /dev/null +++ b/README @@ -0,0 +1,16 @@ +DISCOUNT is a implementation of John Gruber's Markdown markup +language. It implements, as far as I can tell, all of the +language as described in + +and passes the Markdown test suite at + + +DISCOUNT is free software; it is released under a BSD-style license +that allows you to do as you wish with it as long as you don't attempt +to claim it as your own work. + + +Most of the programs included in the DISCOUNT distribution have +manual pages describing how they work. + +The file INSTALL describes how to build and install discount diff --git a/VERSION b/VERSION index 45a1b3f..4aac637 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.2 +1.1.2a