[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/07: gnu: Add kjs.
From: |
Hartmut Goebel |
Subject: |
03/07: gnu: Add kjs. |
Date: |
Mon, 26 Jun 2017 05:00:38 -0400 (EDT) |
htgoebel pushed a commit to branch master
in repository guix.
commit 7090518f2438323b861acd1fc0c4c0e8b214637a
Author: Hartmut Goebel <address@hidden>
Date: Sun Mar 19 22:05:03 2017 +0100
gnu: Add kjs.
* gnu/packages/kde-frameworks.scm (kjs): New variable.
---
gnu/packages/kde-frameworks.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 30c120b..be31385 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -52,6 +52,7 @@
#:use-module (gnu packages linux)
#:use-module (gnu packages mp3)
#:use-module (gnu packages pdf)
+ #:use-module (gnu packages pcre)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages polkit)
@@ -3205,3 +3206,36 @@ http://community.kde.org/Frameworks/Porting_Notes should
help with this.")
license:gpl2 license:gpl2+
license:expat license:bsd-2 license:bsd-3
license:public-domain))))
+
+(define-public kjs
+ (package
+ (name "kjs")
+ (version "5.34.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://kde/stable/frameworks/"
+ (version-major+minor version) "/portingAids/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32 "18b7k1hi73iqn06c1ryy9lcmvscr9d08q7n1wwkrn0l2xmy05xsq"))))
+ (build-system cmake-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("kdoctools" ,kdoctools)
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("pcre" ,pcre)
+ ("qtbase" ,qtbase)))
+ (home-page "https://community.kde.org/Frameworks")
+ (synopsis "KDE Frameworks 5 support for Javascript scripting in Qt
+applications")
+ (description "Add-on library to Qt which adds JavaScript scripting
+support.")
+ ;; Most files are distributed under LGPL2+, but the package also includes
+ ;; code under a variety of licenses.
+ (license '(license:lgpl2.1+
+ license:bsd-2 license:bsd-3
+ (license:non-copyleft "file://src/kjs/dtoa.cpp")))))
- branch master updated (cb76c4e -> 346d5d5), Hartmut Goebel, 2017/06/26
- 05/07: gnu: Add kjsembed., Hartmut Goebel, 2017/06/26
- 01/07: gnu: Add kde-frameworkintegration., Hartmut Goebel, 2017/06/26
- 04/07: gnu: Add khtml., Hartmut Goebel, 2017/06/26
- 07/07: gnu: Add kross., Hartmut Goebel, 2017/06/26
- 03/07: gnu: Add kjs.,
Hartmut Goebel <=
- 02/07: gnu: Add kdelibs4support., Hartmut Goebel, 2017/06/26
- 06/07: gnu: Add kmediaplayer., Hartmut Goebel, 2017/06/26