[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#26463: [PATCH 7/7] gnu: Add kross.
From: |
Hartmut Goebel |
Subject: |
bug#26463: [PATCH 7/7] gnu: Add kross. |
Date: |
Wed, 12 Apr 2017 12:58:28 +0200 |
* gnu/packages/kde-frameworks.scm (kross): New variable.
---
gnu/packages/kde-frameworks.scm | 44 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 29ad0d5..318c9da 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -3279,3 +3279,47 @@ This framework is a porting aid. It is not recommended
for new projects, and
existing projects that use it are advised to port away from it, and use plain
KParts instead.")
(license license:expat)))
+
+(define-public kross
+ (package
+ (name "kross")
+ (version "5.32.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://kde/stable/frameworks/"
+ (version-major+minor version) "/portingAids/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32 "0mgicb2rfhzp0hr1zckp1qzqzbdx0zy82mcjibrlsp7spmvynw5a"))))
+ (build-system cmake-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("kdoctools" ,kdoctools)
+ ("qttools" ,qttools)))
+ (inputs
+ `(("kcompletion" ,kcompletion)
+ ("kcoreaddons" ,kcoreaddons)
+ ("ki18n" ,ki18n)
+ ("kiconthemes" ,kiconthemes)
+ ("kparts" ,kparts)
+ ("kwidgetsaddons" ,kwidgetsaddons)
+ ("kxmlgui" ,kxmlgui)
+ ("qtbase" ,qtbase)
+ ("qtscript" ,qtscript)))
+ (home-page "https://community.kde.org/Frameworks")
+ (synopsis "KDE Frameworks 5 solution for application scripting")
+ (description "Kross is a scripting bridge for the KDE Development Platform
+used to embed scripting functionality into an application. It supports
+QtScript as a scripting interpreter backend.
+
+Kross provides an abstract API to provide scripting functionality in a
+interpreter-independent way. The application that uses Kross should not need
+to know anything about the scripting language being used. The core of Kross
+provides the framework to deal transparently with interpreter-backends and
+offers abstract functionality to deal with scripts.")
+ ;; Most files are distributed under LGPL2+, but the package includes code
+ ;; under a variety of licenses.
+ (license '(license:lgpl2.0+ license:lgpl2.1+
+ license:lgpl2.0 license:gpl3+))))
--
2.7.4
- bug#26463: [PATCH 0/7] Add KDE Frameworks Tier 4, Hartmut Goebel, 2017/04/12
- bug#26463: [PATCH 1/7] gnu: Add KDE frameworkintegration., Hartmut Goebel, 2017/04/12
- bug#26463: [PATCH 7/7] gnu: Add kross.,
Hartmut Goebel <=
- bug#26463: [PATCH 4/7] gnu: Add khtml., Hartmut Goebel, 2017/04/12
- bug#26463: [PATCH 5/7] gnu: Add kjsembed., Hartmut Goebel, 2017/04/12
- bug#26463: [PATCH 6/7] gnu: Add kmediaplayer., Hartmut Goebel, 2017/04/12
- bug#26463: [PATCH 1/7] gnu: Add KDE frameworkintegration., Leo Famulari, 2017/04/12