diff options
| author | Mattias Andrée <maandree@operamail.com> | 2015-12-02 19:53:05 +0100 | 
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2015-12-02 19:53:05 +0100 | 
| commit | b4c269b1c9004a3958586193278fb98e177ca0cc (patch) | |
| tree | 3003c1724cb6ca0075e74099fadc0bd6990837b7 | |
| parent | add readme (diff) | |
| download | librarian-b4c269b1c9004a3958586193278fb98e177ca0cc.tar.gz librarian-b4c269b1c9004a3958586193278fb98e177ca0cc.tar.bz2 librarian-b4c269b1c9004a3958586193278fb98e177ca0cc.tar.xz  | |
readme: formats for librart arg
Signed-off-by: Mattias Andrée <maandree@operamail.com>
| -rw-r--r-- | README | 28 | 
1 files changed, 27 insertions, 1 deletions
@@ -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<MAX        Any versions up to but excluding 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<MAX   Combines NAME>=MIN and NAME<MAX. + +	NAME>MIN<=MAX   Combines NAME>MIN and NAME<=MAX. + +	NAME>MIN<MAX    Combines NAME>MIN and NAME<MAX.  	The are not predefined values for VARIABLE, but the  	standardised ones are:  | 
