From b4c269b1c9004a3958586193278fb98e177ca0cc Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 2 Dec 2015 19:53:05 +0100 Subject: readme: formats for librart arg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- README | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/README b/README index 68bfacf..03b67ca 100644 --- a/README +++ b/README @@ -18,7 +18,33 @@ DESCRIPTION library, or the name of the required library and an accepted version range of said library. If the same library name is used more than once, the versions and - version ranges are unioned. + version ranges are unioned. Recognised formats are + + NAME Any version of the library NAME will do. + + NAME=VERSION Only version VERSION of the library NAME + is acceptable. (Multiple version can be + used by specifying more than once.) + + NAME<=MAX Any versions up to and including MAX + of the library NAME will do. + + NAME=MIN At least version MIN of the library + NAME is required. + + NAME>MIN A greater version than version MIN of + the library NAME is required. + + NAME>=MIN<=MAX Combines NAME>=MIN and NAME<=MAX. + + NAME>=MIN=MIN and NAMEMIN<=MAX Combines NAME>MIN and NAME<=MAX. + + NAME>MINMIN and NAME