[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
26/100: gnu: Add presage.
From: |
guix-commits |
Subject: |
26/100: gnu: Add presage. |
Date: |
Wed, 8 Jul 2020 03:36:39 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 866a00cfa907518563106a6314717fe7977ef4fe
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Tue Jun 2 19:41:00 2020 -0400
gnu: Add presage.
* gnu/packages/fcitx.scm (presage): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/fcitx.scm | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 60 insertions(+)
diff --git a/gnu/packages/fcitx.scm b/gnu/packages/fcitx.scm
index e699d7d..279a9c8 100644
--- a/gnu/packages/fcitx.scm
+++ b/gnu/packages/fcitx.scm
@@ -22,18 +22,78 @@
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system cmake)
+ #:use-module (guix build-system glib-or-gtk)
+ #:use-module (gnu packages check)
#:use-module (gnu packages documentation)
#:use-module (gnu packages enchant)
#:use-module (gnu packages gettext)
#:use-module (gnu packages glib)
+ #:use-module (gnu packages graphviz)
#:use-module (gnu packages gtk)
#:use-module (gnu packages icu4c)
#:use-module (gnu packages iso-codes)
+ #:use-module (gnu packages man)
+ #:use-module (gnu packages ncurses)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages python)
+ #:use-module (gnu packages sqlite)
#:use-module (gnu packages web)
#:use-module (gnu packages xml)
#:use-module (gnu packages xorg))
+(define-public presage
+ (package
+ (name "presage")
+ (version "0.9.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://sourceforge/presage/presage/"
+ version "/presage-" version ".tar.gz"))
+ (sha256
+ (base32 "0rm3b3zaf6bd7hia0lr1wyvi1rrvxkn7hg05r5r1saj0a3ingmay"))))
+ (build-system glib-or-gtk-build-system)
+ (outputs '("out" "doc"))
+ (arguments
+ `(#:configure-flags
+ (list
+ "CFLAGS=-Wno-narrowing"
+ "CXXFLAGS=-Wno-narrowing")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'move-doc
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc")))
+ (mkdir-p (string-append doc "/share/presage"))
+ (rename-file
+ (string-append out "/share/presage/html")
+ (string-append doc "/share/presage/html"))
+ #t))))))
+ (native-inputs
+ `(("dot" ,graphviz)
+ ("doxygen" ,doxygen)
+ ("gettext" ,gettext-minimal)
+ ("glib:bin" ,glib "bin")
+ ("gtk+:bin" ,gtk+ "bin")
+ ("help2man" ,help2man)
+ ("pkg-config" ,pkg-config)
+ ("python-wrapper" ,python-wrapper)))
+ (inputs
+ `(("glib" ,glib)
+ ("gtk+" ,gtk+)
+ ("libx11" ,libx11)
+ ("sqlite" ,sqlite)
+ ("tinyxml" ,tinyxml)))
+ (synopsis "Intelligent Predictive Text Entry System")
+ (description "Presage generates predictions by modelling natural language
as
+a combination of redundant information sources. It computes probabilities for
+words which are most likely to be entered next by merging predictions generated
+by the different predictive algorithms.")
+ (home-page "https://presage.sourceforge.io/")
+ (license gpl2+)))
+
(define-public fcitx
(package
(name "fcitx")
- 14/100: gnu: google-brotli: Update package definition., (continued)
- 14/100: gnu: google-brotli: Update package definition., guix-commits, 2020/07/08
- 17/100: gnu: clutter-gtk: Update package definition., guix-commits, 2020/07/08
- 16/100: gnu: clutter: Update to 1.26.4., guix-commits, 2020/07/08
- 13/100: gnu: atk: Update to 2.36.0., guix-commits, 2020/07/08
- 21/100: gnu: catch-framework2: Update to 2.3.0., guix-commits, 2020/07/08
- 22/100: gnu: Add ronn., guix-commits, 2020/07/08
- 30/100: gnu: gdk-pixbuf: Update package definition., guix-commits, 2020/07/08
- 18/100: gnu: clutter-gst: Update package definition., guix-commits, 2020/07/08
- 20/100: gnu: dconf: Update to 0.36.0., guix-commits, 2020/07/08
- 23/100: gnu: Add nuspell., guix-commits, 2020/07/08
- 26/100: gnu: Add presage.,
guix-commits <=
- 27/100: gnu: fcitx: Update package definition., guix-commits, 2020/07/08
- 28/100: gnu: gcab: Update to 1.4., guix-commits, 2020/07/08
- 29/100: gnu: gcr: Update to 3.36.0., guix-commits, 2020/07/08
- 31/100: gnu: gdk-pixbuf+svg: Update package definition., guix-commits, 2020/07/08
- 35/100: gnu: glib-networking: Update to 2.62.4., guix-commits, 2020/07/08
- 19/100: gnu: cogl: Update package definition., guix-commits, 2020/07/08
- 24/100: gnu: enchant-1.6: Update package definition., guix-commits, 2020/07/08
- 25/100: gnu: enchant: Update package definition., guix-commits, 2020/07/08
- 33/100: gnu: Add sysprof., guix-commits, 2020/07/08
- 34/100: gnu: gjs: Update to 1.58.8., guix-commits, 2020/07/08