Untabify readme

This commit is contained in:
Frederik Hanghøj Iversen 2018-05-31 02:00:29 +02:00
parent 9497a650ea
commit 66e5f46912

View file

@ -33,7 +33,7 @@ Building
You can build the library with You can build the library with
git submodule update --init git submodule update --init
make make
The Makefile takes care of using the right dependencies. The Makefile takes care of using the right dependencies.
Unfortunately I have not found a way to automatically inform Unfortunately I have not found a way to automatically inform
@ -42,11 +42,12 @@ in stead is to copy these libraries to a global location and then add
them system wide: them system wide:
mkdir -p ~/.agda/libs mkdir -p ~/.agda/libs
cd ~/.agda/libs cd ~/.agda/libs
git clone $CAT/libs/std-lib git clone $CAT/libs/std-lib
git clone $CAT/libs/cubical git clone $CAT/libs/cubical
echo << EOF | tee -a ~/.agda/libraries echo << EOF | tee -a ~/.agda/libraries
$HOME/.agda/libs/agda-stdlib/standard-library.agda-lib $HOME/.agda/libs/agda-stdlib/standard-library.agda-lib
$HOME/.agda/libs/cubical/cubical.agda-lib $HOME/.agda/libs/cubical/cubical.agda-lib
EOF EOF
Or you could symlink them as well if you want.