aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/fribidi.scm
blob: e213192aa6a70a2fadbdeeb0db4a5761809f01f0 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Marek Benc <merkur32@gmail.com>
;;; Copyright © 2016, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages fribidi)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses)
  #:use-module (gnu packages))

(define-public fribidi
  (package
    (name "fribidi")
    (version "1.0.9")
    (source
      (origin
        (method url-fetch)
        (uri
         (string-append "https://github.com/fribidi/fribidi/releases"
                        "/download/v" version "/fribidi-" version
                         ".tar.xz"))
        (sha256
         (base32 "1iz06r6ha2nrgbzbn4141r58a60a9s5qiaadjjhhvdkg0alpxr65"))))
    (build-system gnu-build-system)
    (synopsis "Implementation of the Unicode bidirectional algorithm")
    (description
     "GNU FriBidi is an implementation of the Unicode Bidirectional
Algorithm.  This algorithm is used to properly display text in left-to-right
or right-to-left ordering as necessary.")
    (home-page "https://github.com/fribidi/fribidi")
    (license lgpl2.1+)))

(define-public bidiv
  (package
    (name "bidiv")
    (version "1.5")
    (source
      (origin
        (method url-fetch)
        (uri (string-append "mirror://debian/pool/main/b/bidiv/bidiv_"
                            version ".orig.tar.gz"))
        (sha256
         (base32
          "05p5m2ihxbmc1qsgs8rjlww08fy9859fhl7xf196p8g5qygqd7cv"))
        (patches (search-patches "bidiv-update-fribidi.patch"))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (delete 'configure) ; no configure
         (add-after 'unpack 'misc-fixes
           (lambda _
             (substitute* "bidiv.c"
               (("FriBidiCharType") "FriBidiParType")
               (("&c") "(char *)&c"))
             #t))
         ;; We don't want to use the handwritten makefile
         (replace 'build
           (lambda* (#:key inputs #:allow-other-keys)
             (let ((fribidi (assoc-ref inputs "fribidi")))
               (invoke "gcc" "-o" "bidiv" "bidiv.c"
                       ;; pkg-config --cflags fribidi
                       (string-append "-I" fribidi "/include/fribidi")
                       ;; pkg-config --libs fribidi
                       (string-append "-L" fribidi "/lib") "-lfribidi"))))
         (replace 'install
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (bin (string-append out "/bin"))
                    (man (string-append out "/share/man/man1")))
               (install-file "bidiv" bin)
               (install-file "bidiv.1" man))
             #t)))
       #:tests? #f)) ; no tests
    (inputs
     `(("fribidi" ,fribidi)))
    (home-page "https://tracker.debian.org/pkg/bidiv")
    (synopsis "BiDi viewer - command-line tool displaying logical Hebrew/Arabic")
    (description "bidiv is a simple utility for converting logical-Hebrew input
to visual-Hebrew output.  This is useful for reading Hebrew mail messages,
viewing Hebrew texts, etc.  It was written for Hebrew but Arabic (or other BiDi
languages) should work equally well.")
    (license gpl2+)))
9gnu: lagrange: Update to 1.11.1....* gnu/packages/web-browsers.scm (lagrange): Update to 1.11.1. [inputs]: Add FREETYPE. Nicolas Goaziou 2022-02-13Merge branch 'master' into stagingMarius Bakke 2022-02-19gnu: lagrange: Update to 1.10.6....* gnu/packages/web-browsers.scm (lagrange): Update to 1.10.6. Efraim Flashner 2022-02-11gnu: lagrange: Update to 1.10.5....* gnu/packages/web-browsers.scm (lagrange): Update to 1.10.5. Nicolas Goaziou 2022-02-06gnu: lagrange: Update to 1.10.4....* gnu/packages/web-browsers.scm (lagrange): Update to 1.10.4. Efraim Flashner 2022-02-01gnu: lagrange: Update to 1.10.3....* gnu/packages/web-browsers.scm (lagrange): Update to 1.10.3. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> jgart via Guix-patches via 2022-01-28gnu: qutebrowser: Remove a transitive dependency on QtWebKit....This browser is explicity a Chromium / QtWebEngine browser, so it shouldn't also depend on QtWebKit. See <https://issues.guix.gnu.org/53289> for more information about this change. * gnu/packages/web-browsers.scm (qutebrowser)[inputs]: Replace python-pyqt with python-pyqt-without-qtwebkit. Leo Famulari 2022-01-25Merge branch 'master' into staging....With "conflicts" solved (all in favor of master except git) in: gnu/local.mk gnu/packages/databases.scm gnu/packages/glib.scm gnu/packages/gnome.scm gnu/packages/gnupg.scm gnu/packages/gnuzilla.scm gnu/packages/graphics.scm gnu/packages/gstreamer.scm gnu/packages/gtk.scm gnu/packages/linux.scm gnu/packages/machine-learning.scm gnu/packages/networking.scm gnu/packages/polkit.scm gnu/packages/pulseaudio.scm gnu/packages/rpc.scm gnu/packages/rust.scm gnu/packages/version-control.scm gnu/packages/w3m.scm Maxim Cournoyer 2022-01-24gnu: lagrange: Update to 1.10.2....* gnu/packages/web-browsers.scm (lagrange): Update to 1.10.2. Nicolas Goaziou 2022-01-20gnu: lagrange: Update to 1.10.1....* gnu/packages/web-browsers.scm (lagrange): Update to 1.10.1. Efraim Flashner 2022-01-20gnu: telescope: Update to 0.7.1....* gnu/packages/web-browsers.scm (telescope): Update to 0.7.1. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> cage 2022-01-19gnu: nyxt: Update to 2.2.4....* gnu/packages/web-browsers.scm (nyxt): Update to 2.2.4. Pierre Neidhardt 2022-01-18gnu: gmni: Update to 1.0....* gnu/packages/web-browsers.scm (gmni): Update to 1.0. [arguments]<#:make-flags>: Use G-expressions. [inputs]: Replace openssl with bearssl. Nicolas Goaziou 2022-01-18gnu: lagrange: Update to 1.10.0....* gnu/packages/web-browsers.scm (lagrange): Update to 1.10.0. Nicolas Goaziou 2022-01-14gnu: telescope: Remove input labels....* gnu/packages/web-browsers.scm (telescope)[native-inputs]: Remove input labels. Nicolas Goaziou 2022-01-14gnu: telescope: Update to 0.7....* gnu/packages/web-browsers.scm (telescope): Update to 0.7. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> cage 2022-01-14gnu: lagrange: Update to 1.9.5....* gnu/packages/web-browsers.scm (lagrange): Update to 1.9.5. [arguments]: Remove 'fix-build-error phase. Efraim Flashner