contrib.nut 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. --
  2. -- Copyright (C) 2008 by egnite GmbH.
  3. --
  4. -- All rights reserved.
  5. --
  6. -- Redistribution and use in source and binary forms, with or without
  7. -- modification, are permitted provided that the following conditions
  8. -- are met:
  9. --
  10. -- 1. Redistributions of source code must retain the above copyright
  11. -- notice, this list of conditions and the following disclaimer.
  12. -- 2. Redistributions in binary form must reproduce the above copyright
  13. -- notice, this list of conditions and the following disclaimer in the
  14. -- documentation and/or other materials provided with the distribution.
  15. -- 3. Neither the name of the copyright holders nor the names of
  16. -- contributors may be used to endorse or promote products derived
  17. -- from this software without specific prior written permission.
  18. --
  19. -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. -- ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  22. -- FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  23. -- COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  24. -- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  25. -- BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  26. -- OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  27. -- AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  28. -- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  29. -- THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. -- SUCH DAMAGE.
  31. --
  32. -- For additional information see http://www.ethernut.de/
  33. --
  34. -- Non-BSD licensed code
  35. --
  36. -- $Id: contrib.nut 5257 2013-08-03 12:46:31Z olereinhardt $
  37. --
  38. nutcontrib =
  39. {
  40. options =
  41. {
  42. {
  43. brief = "RealNetworks RPSL/RCSL",
  44. description = "Enable this option only, if you agree to the\n\n"..
  45. "RealNetworks Public Source License Version 1.0\n\n"..
  46. "For details see http://opensource.org/licenses/real.php",
  47. provides = { "LICENSE_RPSL_RCSL" },
  48. macro = "LICENSE_RPSL_RCSL",
  49. flavor = "boolean",
  50. makedefs = { "LICENSE_RPSL_RCSL=y" }
  51. },
  52. {
  53. brief = "GNU GENERAL PUBLIC LICENSE Version 3",
  54. description = "Enable this option only, if you agree to the\n\n"..
  55. "GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007\n\n"..
  56. "For details see http://www.gnu.org/licenses/gpl-3.0-standalone.html",
  57. provides = { "LICENSE_GPL3" },
  58. macro = "LICENSE_GPL3",
  59. flavor = "boolean",
  60. makedefs = { "LICENSE_GPLv3=y" }
  61. },
  62. {
  63. brief = "STMicroelectronics Guidance Only",
  64. description = "This is not an OSI approved license. Specifically "..
  65. "commercial use and redistribution is unclear. Carefully "..
  66. "check the copyright claimer in the individual source files.\n\n"..
  67. "Enable this option only, if you agree to this.",
  68. provides = { "LICENSE_ST_GUIDANCE_ONLY" },
  69. macro = "LICENSE_ST_GUIDANCE_ONLY",
  70. flavor = "boolean",
  71. makedefs = { "LICENSE_ST_GUIDANCE=y" }
  72. },
  73. {
  74. brief = "MCD-ST Liberty SW License Agreement V2",
  75. description = "Enable this option only, if you agree to the\n\n"..
  76. "MCD-ST Liberty SW License Agreement V2\n\n"..
  77. "For details see http://www.st.com/software_license_agreement_liberty_v2",
  78. provides = { "LICENSE_MCD_ST_LIBERTY" },
  79. macro = "LICENSE_MCD_ST_LIBERTY",
  80. flavor = "boolean",
  81. makedefs = { "LICENSE_MCD_ST_LIBERTY=y" }
  82. },
  83. },
  84. {
  85. name = "nutcontrib_hxmp3",
  86. brief = "RealNetworks Decoder",
  87. requires = { "HW_TARGET" },
  88. script = "contrib/hxmp3.nut"
  89. },
  90. {
  91. name = "nutcontrib_armcrypto",
  92. brief = "ARM Crypto Library",
  93. requires = { "HW_TARGET" },
  94. script = "contrib/armcrypto.nut"
  95. }
  96. }