2
1

qt5script.mk 1.0 KB

123456789101112131415161718192021222324
  1. ################################################################################
  2. #
  3. # qt5script
  4. #
  5. ################################################################################
  6. QT5SCRIPT_VERSION = $(QT5_VERSION)
  7. QT5SCRIPT_SITE = $(QT5_SITE)
  8. QT5SCRIPT_SOURCE = qtscript-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5SCRIPT_VERSION).tar.xz
  9. QT5SCRIPT_INSTALL_STAGING = YES
  10. # JavaScriptCore contains files under BSD-2-Clause, BSD-3-Clause, and LGPL-2+.
  11. # This is linked into libQt5Script, which also contains Qt sources under
  12. # LGPL-2.1 (only). Therefore, the library is LGPL-2.1 and BSD-3-Clause.
  13. # libQt5ScriptTools is under the normal Qt opensource license.
  14. QT5SCRIPT_LICENSE = LGPL-2.1, BSD-3-Clause, LGPL-3.0 or GPL-2.0+ (libQt5ScriptTools), GFDL-1.3 (docs)
  15. # LGPL-2.1 license file is missing
  16. QT5SCRIPT_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.LGPL3 LICENSE.FDL
  17. # License files from JavaScriptCore
  18. QT5SCRIPT_LICENSE_FILES += \
  19. src/3rdparty/javascriptcore/JavaScriptCore/COPYING.LIB \
  20. src/3rdparty/javascriptcore/JavaScriptCore/pcre/COPYING
  21. $(eval $(qmake-package))