Updated descriptions

This commit is contained in:
Eyck Jentzsch 2017-10-28 18:07:51 +02:00
parent bfd0359354
commit 2f922aae4f
3 changed files with 11 additions and 4 deletions

View File

@ -55,3 +55,10 @@ conan test_package SystemCVerification/2.0.0.a@minres/<channel name> -o SystemC
```
where <c++ std variant> is one of 98, 11, or 14
## uploading
Uploading can be done using
```
conan upload <package name>/<package version>@<user name>/<channel> --all -r=<remote name>
```

View File

@ -5,7 +5,7 @@ class SeasocksConan(ConanFile):
name = "SystemC"
version = "2.3.2"
license = "Apache 2.0 License"
url = ""
url = "https://github.com/Minres/conan-recipes/blob/master/SystemC"
description = "SystemC is a set of C++ classes and macros which provide an event-driven simulation interface (see also discrete event simulation)."
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False], "stdcxx":[98,11,14]}

View File

@ -5,9 +5,9 @@ class SystemcverificationConan(ConanFile):
name = "SystemCVerification"
version = "2.0.0a"
folder = "scv-2.0.0a-20161019"
license = "Apache License 2.0"
url = "<Package recipe repository url here, for issues about the package>"
description = "<Description of Systemcverification here>"
license = "Apache 2.0 License"
url = "https://github.com/Minres/conan-recipes/blob/master/SystemCVerification"
description = "The SystemC Verification (SCV) library provides a common set of APIs that are used as a basis to verification activities with SystemC"
settings = "os", "compiler", "build_type", "arch"
options = {"stdcxx":[98,11,14]}
default_options = "stdcxx=98"