aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorChristopher Vance <[email protected]>2014-12-26 11:23:00 +1100
committerChristopher Vance <[email protected]>2014-12-26 11:23:00 +1100
commit4197e19f189ef2c6982987423fd3f55fb615736e (patch)
tree19ae3f5b7245064bd3c5a98acc647974bb12b4bb /README.md
parent68c888981b1b81e922de86813effce14b0f06082 (diff)
downloaderlang.mk-4197e19f189ef2c6982987423fd3f55fb615736e.tar.gz
erlang.mk-4197e19f189ef2c6982987423fd3f55fb615736e.tar.bz2
erlang.mk-4197e19f189ef2c6982987423fd3f55fb615736e.zip
add svn dependencies
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9b3ecbb..d186033 100644
--- a/README.md
+++ b/README.md
@@ -115,6 +115,17 @@ dep_cowboy = git https://github.com/ninenines/cowboy 1.0.0
They will always be compiled using the command `make`. If the dependency
does not feature a Makefile, then erlang.mk will be used for building.
+For subversion dependencies, the url specifies trunk, branch or
+tag. To specify a particular revision, use `@revision` at the end of
+the url. No separate specification of branch, tag, or revision is
+required or possible.
+
+``` erlang
+DEPS = ex1 ex2
+dep_ex1 = svn https://example.com/svn/trunk/project/ex1
+dep_ex2 = svn svn://example.com/svn/branches/erlang-proj/ex2@264
+```
+
You can also specify test-only dependencies. These dependencies will only
be downloaded when running `make tests`. The format is the same as above,
except the variable `TEST_DEPS` holds the list of test-only dependencies.