;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2014, 2015 Andreas Enge ;;; Copyright © 2014 Sree Harsha Totakura ;;; Copyright © 2015 Ludovic Courtès ;;; ;;; 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 gnunet) #:use-module (gnu packages) #:use-module (gnu packages file) #:use-module (gnu packages autotools) #:use-module (gnu packages compression) #:use-module (gnu packages curl) #:use-module (gnu packages geeqie) #:use-module (gnu packages gettext) #:use-module (gnu packages glib) #:use-module (gnu packages gnupg) #:use-module (gnu packages groff) #:use-module (gnu packages gstreamer) #:use-module (gnu packages libidn) #:use-module (gnu packages image) #:use-module (gnu packages libunistring) #:use-module (gnu packages maths) #:use-module (gnu packages pkg-config) #:use-module (gnu packages perl) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages python) #:use-module (gnu packages databases) #:use-module (gnu packages tls) #:use-module (gnu packages video) #:use-module (gnu packages xiph) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public libextractor (package (name "libextractor") (version "1.3") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/libextractor/libextractor-" version ".tar.gz")) (sha256 (base32 "0zvv7wd011npcx7yphw9bpgivyxz6mlp87a57n96nv85k96dd2l6")) (modules '((guix build utils))) (snippet ;; Nowadays libmagic (from 'file') returns 'audio/ogg' and not ;; 'application/ogg'. Adjust accordingly. '(substitute* "src/plugins/test_mime.c" (("application/ogg") "audio/ogg"))))) (build-system gnu-build-system) ;; WARNING: Checks require /dev/shm to be in the build chroot, especially ;; not to be a symbolic link to /run/shm. ;; FIXME: ;; The following dependencies are all optional, but should be ;; available for maximum coverage: ;; * libarchive ;; * libgif (giflib) ;; * libgtk+ >= 3.0.0 (may probably drop glib then as a pr2023-02-17gnu: Add coucal....Nicolas Goaziou 2022-08-11gnu: Add libcuckoo....Marius Bakke 2022-05-21gnu: liburcu: Fix license...Olivier Dion 2022-03-28gnu: sdsl-lite: Adjust inputs....Efraim Flashner 2022-01-07gnu: liburcu: Update to 0.13.1....Tobias Geerinckx-Rice 2021-12-13gnu: Simplify package inputs....Ludovic Courtès 2021-10-12gnu: Remove references to meson-0.55....Efraim Flashner 2021-06-19Merge branch 'master' into core-updates...Marius Bakke 2021-06-12Revert "gnu: liburcu: Omit static library."...Tobias Geerinckx-Rice 2021-06-09gnu: liburcu: Update to 0.13.0....Tobias Geerinckx-Rice 2021-06-09gnu: liburcu: Omit static library....Tobias Geerinckx-Rice 2021-05-22gnu: Meson: Remove special versions....Marius Bakke 2021-03-02gnu: liburcu: Update to 0.12.2....Tobias Geerinckx-Rice 2021-02-15gnu: tllist: Update to 1.0.5....Tobias Geerinckx-Rice 2020-12-06gnu: Add tllist....Marius Bakke 2020-09-21gnu: gdsl: Replace 'url-fetch' by 'git-fetch'....zimoun 2020-08-30gnu: sdsl-lite: Fix build....Efraim Flashner 2020-08-30gnu: sdsl-lite: Install pkgconfig file....Efraim Flashner 2020-08-15gnu: sparsehash: Update to 2.0.4....Tobias Geerinckx-Rice 2020-07-31gnu: Add robin-map....Mark H Weaver 2020-07-12gnu: Remove ".git" from "https://github/…/….git"....Ludovic Courtès 2020-06-29gnu: marisa: Mark up description....Tobias Geerinckx-Rice 2020-06-29gnu: marisa: Update to 0.2.6....Tobias Geerinckx-Rice 2020-04-23gnu: liburcu: Update to 0.12.1....Tobias Geerinckx-Rice 2020-04-13