-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
some tweaks to README, travis, and dependencies
- Loading branch information
Showing
9 changed files
with
34 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
echo "yes" | sudo add-apt-repository ppa:avsm/ppa | ||
sudo apt-get update -qq | ||
sudo apt-get install -qq opam | ||
export OPAMYES=1 | ||
if ! opam switch $OCAML; then | ||
rm -rf ~/.opam/$OCAML | ||
opam init --yes --bare | ||
opam switch create $OCAML | ||
fi | ||
eval $(opam env) | ||
opam upgrade --yes --all | ||
opam pin remove --yes $PACKAGE; opam pin add --yes --no-action $PACKAGE . | ||
opam install --yes --deps-only $PACKAGE | ||
opam install --yes --verbose --build-doc --build-test --keep-build-dir $PACKAGE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters