| Downloads |
The source code for compiling programs in the Humdrum Extra collection
is available in three formats:
| humextra.tgz |
|
Source code compressed as a GNU zipped tar file. Uncompress this file
in linux using the command tar xvzf humextra.tgz .
The file can be downloaded in linux with the command:
wget http://extras.humdrum.org/download/humextra.tgz
or in OSX:
curl http://extras.humdrum.org/download/humextra.tgz -o humextra.tgz
|
| humextra.zip |
|
Source code compressed as a ZIP file (most common distribution type for Windows).
Uncompress this file in linux using the command zip humextra.zip .
The file can be downloaded in linux with the command:
wget http://extras.humdrum.org/download/humextra.zip
or in OSX:
curl http://extras.humdrum.org/download/humextra.zip -o humextra.zip
|
| humextra.tar.bz2 |
|
Source code compressed as a GNU zipped tar file. Uncompress this file
in linux using the command: tar xvjf humextra.tar.bz2 .
The file can be downloaded in linux with the command:
wget http://extras.humdrum.org/download/humextra.tar.bz2
or in OSX:
curl http://extras.humdrum.org/download/humextra.tar.bz2 -o humextra.tar.bz2
|
After downloading and uncompressing the source code, you can compile
the programs using the following commands:
cd humextra
make library
make programs
But first, you should edit the files humextra/Makefile.library
and humextra/Makefile.programs and set the OSTYPE to the
operating system which you are using.
You may have/want to alter compiling settings in the files
humextra/Makefile.library and
humextra/Makefile.programs.
Compiled programs will be written to the directory humextra/bin.
The file humextra/TIMESTAMP contains
the date at which time the source code files were last collected
into the distribution file.
Documentation:
The documentation package contains the contents
of humextra/man
and humextra/example.
The file humextra/TIMESTAMP.doc contains the date at which
time the documentation files were last collected into the
distribution file.
|