diff --git a/README.md b/README.md index 9d16ea8..78c78c1 100644 --- a/README.md +++ b/README.md @@ -55,3 +55,10 @@ conan test_package SystemCVerification/2.0.0.a@minres/ -o SystemC ``` where is one of 98, 11, or 14 + +## uploading + +Uploading can be done using +``` +conan upload /@/ --all -r= +``` diff --git a/SystemC/conanfile.py b/SystemC/conanfile.py index 314e030..dda3412 100644 --- a/SystemC/conanfile.py +++ b/SystemC/conanfile.py @@ -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]} diff --git a/SystemCVerification/conanfile.py b/SystemCVerification/conanfile.py index 175986d..9d8d0c7 100644 --- a/SystemCVerification/conanfile.py +++ b/SystemCVerification/conanfile.py @@ -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 = "" - description = "" + 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"