;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Marek Benc ;;; Copyright © 2016, 2019, 2020 Efraim Flashner ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; ;;; 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 . (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+))) kages/sagemath.scm?id=707f15bcb4ff4e2ad24a8b9d109c77f59a096890'>gnu: brial: Update to 1.2.8.Tobias Geerinckx-Rice 2020-02-18gnu: brial: Update to 1.2.7.Tobias Geerinckx-Rice 2020-01-15gnu: zn-poly: Update to 0.9.2.Tobias Geerinckx-Rice 2020-01-15gnu: brial: Use the source repository as home page.Tobias Geerinckx-Rice 2020-01-15gnu: brial: Update to 1.2.6.Tobias Geerinckx-Rice 2019-11-03gnu: pynac: Update to 0.7.26.Tobias Geerinckx-Rice 2019-10-20gnu: Remove more GCC < 7 workarounds.Marius Bakke 2019-06-21gnu: Move ratpoints into "sagemath.scm"Nicolas Goaziou 2019-06-21gnu: zn-poly: Install all libraries.Andreas Enge 2019-06-21gnu: Add lcalc.Andreas Enge 2019-06-20gnu: zn_poly: Rename to zn-poly, according to our naming conventions.Andreas Enge 2019-06-19gnu: Add brial.Andreas Enge 2019-06-19gnu: Add zn_poly.Andreas Enge 2019-06-19gnu: Add pynac.Andreas Enge 2019-06-19gnu: python-gmpy2: Update to 2.1.0b1.Andreas Enge