diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2025-01-03 17:19:57 -0500 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2025-01-03 17:19:57 -0500 |
commit | f7fc2a99bc435bfa699c710f2f6204d99379e1c2 (patch) | |
tree | e718e1d58621f18ab14a0c9d66d8e014cb65faa6 /captain/BUILD.md | |
parent | f43007b637900d17c6c0ecdb9aeeab4393e03c3f (diff) | |
download | levitating-f7fc2a99bc435bfa699c710f2f6204d99379e1c2.tar.gz levitating-f7fc2a99bc435bfa699c710f2f6204d99379e1c2.zip |
Results should now be gzipd as they arrive and unzipped only upon request.
Diffstat (limited to 'captain/BUILD.md')
-rw-r--r-- | captain/BUILD.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/captain/BUILD.md b/captain/BUILD.md index 506adc4..d926a4b 100644 --- a/captain/BUILD.md +++ b/captain/BUILD.md @@ -6,17 +6,19 @@ though it should work on any UNIX-y system with a modern Fortran compiler. ## Requirements -The captain only has three dependencies: +The captain only has five dependencies: * SQLite3 development libraries * SSL development libraries * uuidgen + * mimetype + * gzip/gunzip The first two are necessary for building, while the third is a runtime dependency. These can be installed on Debian with the following command: ``` -apt-get install libssl-dev libsqlite3-dev uuid-runtime +apt-get install libssl-dev libsqlite3-dev uuid-runtime gzip libfile-mimeinfo-perl ``` ## Building |