[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#26637: [PATCH] gnu: Add gcompris-qt.
From: |
Glenn Morris |
Subject: |
bug#26637: [PATCH] gnu: Add gcompris-qt. |
Date: |
Mon, 24 Apr 2017 12:50:43 -0400 |
User-agent: |
Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) |
Report reassigned to guix-patches.
If you want to report bugs by bcc (?), you must specify a Package: in
the first line of the body.
Efraim Flashner wrote:
> * gnu/packages/education.scm (gcompris-qt): New variable.
> ---
> gnu/packages/education.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 43 insertions(+)
>
> diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
> index 808be203c..797fe69f6 100644
> --- a/gnu/packages/education.scm
> +++ b/gnu/packages/education.scm
> @@ -2,6 +2,7 @@
> ;;; Copyright © 2016 Danny Milosavljevic <address@hidden>
> ;;; Copyright © 2016, 2017 Ricardo Wurmus <address@hidden>
> ;;; Copyright © 2016 Hartmut Goebel <address@hidden>
> +;;; Copyright © 2017 Efraim Flashner <address@hidden>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -28,6 +29,7 @@
> #:use-module (gnu packages glib)
> #:use-module (gnu packages gnome)
> #:use-module (gnu packages gtk)
> + #:use-module (gnu packages kde-frameworks) ; extra-cmake-modules
> #:use-module (gnu packages perl)
> #:use-module (gnu packages pkg-config)
> #:use-module (gnu packages python)
> @@ -102,6 +104,47 @@ of categories with some of the activities available in
> that category.
> ")
> (license license:gpl3+)))
>
> +(define-public gcompris-qt
> + (package
> + (name "gcompris-qt")
> + (version "0.70")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append
> + "http://gcompris.net/download/qt/src/gcompris-qt-"
> + version ".tar.xz"))
> + (sha256
> + (base32
> + "01r7i8dmwb2nlfyp0y0mzs8yydmvn5gq7xn1w7g21lysak1mliwa"))))
> + (build-system cmake-build-system)
> + (arguments
> + '(#:configure-flags (list "-DQML_BOX2D_MODULE=disabled")
> + #:tests? #f)) ; no test target
> + (native-inputs
> + `(("extra-cmake-modules" ,extra-cmake-modules)
> + ("gettext" ,gettext-minimal)
> + ("perl" ,perl)))
> + (inputs
> + `(("python-2" ,python-2)
> + ("qt" ,qt)))
> + (home-page "http://gcompris.net/index-en.html")
> + (synopsis "Educational games for small children")
> + (description
> + "A large collection of educational games for small children, designed
> to be
> +a unified interface to integrate more educational games. Language-oriented
> +games contain vocabulary, sounds, and voices for many different languages.
> +Currently available boards include:
> address@hidden
> address@hidden learning how to use a mouse and keyboard
> address@hidden learning simple arithmetic
> address@hidden learning how to read an analog clock
> address@hidden recognize letters after hearing their names
> address@hidden reading practice
> address@hidden small games (memory games, jigsaw puzzles, ...)
> address@hidden enumerate\n")
> + (license license:gpl3+)))
> +
> (define-public tipp10
> (package
> (name "tipp10")
- bug#26637: [PATCH] gnu: Add gcompris-qt.,
Glenn Morris <=