diff options
author | Simon Josefsson <simon@josefsson.org> | 2009-05-29 17:59:41 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2009-05-29 17:59:41 +0200 |
commit | 1633ffad0c26c36631eaea18ec26436cfea96eeb (patch) | |
tree | 620040df9708c4b4d6b34758db2967ac572661e7 | |
parent | cd784c1e26a8d7b80a4c69b45b7d9cbd6e5fe7fa (diff) | |
download | libtasn1-1633ffad0c26c36631eaea18ec26436cfea96eeb.tar.gz libtasn1-1633ffad0c26c36631eaea18ec26436cfea96eeb.tar.bz2 libtasn1-1633ffad0c26c36631eaea18ec26436cfea96eeb.zip |
Add.
-rw-r--r-- | README-alpha | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/README-alpha b/README-alpha new file mode 100644 index 0000000..abaee9d --- /dev/null +++ b/README-alpha @@ -0,0 +1,42 @@ +This file contains instructions for developers and advanced users that +wants to build from version controlled sources. + +We require several tools to build the software, including: + +- Automake <http://www.gnu.org/software/automake/> +- Autoconf <http://www.gnu.org/software/autoconf/> +- Libtool <http://www.gnu.org/software/libtool/> +- Texinfo <http://www.gnu.org/software/texinfo/> +- help2man <http://www.gnu.org/software/help2man/> +- Tar <http://www.gnu.org/software/tar/> +- Gzip <http://www.gnu.org/software/gzip/> +- Texlive & epsf <http://www.tug.org/texlive/> (for PDF manual) +- GTK-DOC <http://www.gtk.org/gtk-doc/> (for API manual) +- Git <http://git.or.cz/> +- Perl <http://www.cpan.org/> +- Valgrind <http://valgrind.org/> (optional) + +The required software is typically disitributed with your operating +system, and the instructions for installing them differ. Here are +some hints: + +gNewSense/Debian/Ubuntu: +sudo apt-get install git-core autoconf automake libtool +sudo apt-get install texinfo texlive texlive-generic-recommended texlive-extra-utils +sudo apt-get install help2man gtk-doc-tools valgrind + +To download the version controlled sources: + +$ git clone git://git.savannah.gnu.org/libtasn1.git +$ cd libtasn1 + +The next step is to run autoreconf, ./configure, etc: + +$ make bootstrap + +Then build the project normally: + +$ make +$ make check + +Happy hacking! |