guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] Add rapicorn.


From: Mathieu Lirzin
Subject: Re: [PATCH] Add rapicorn.
Date: Wed, 13 Apr 2016 22:09:42 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)

Hello,

Ricardo Wurmus <address@hidden> writes:

> From f50b4c419437b4213a27ad52bd43cefe00e55d84 Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <address@hidden>
> Date: Wed, 13 Apr 2016 08:56:16 +0200
> Subject: [PATCH 2/2] gnu: Add rapicorn.
>
> * gnu/packages/graphics.scm (rapicorn): New variable.
> ---
>  gnu/packages/graphics.scm | 78 
> +++++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 78 insertions(+)
>
> diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
> index da0fa54..ef1f0fd 100644
> --- a/gnu/packages/graphics.scm
> +++ b/gnu/packages/graphics.scm
[...]
> @@ -271,6 +281,74 @@ visual effects work for film.")
>      (home-page "http://www.openimageio.org";)
>      (license license:bsd-3)))
>  
> +(define-public rapicorn
> +  (package
> +    (name "rapicorn")
> +    (version "16.0.0")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "https://testbit.eu/pub/dists/rapicorn/";
> +                                  "rapicorn-" version ".tar.xz"))
> +              (sha256
> +               (base32
> +                "1y51yjrpsihas1jy905m9p3r8iiyhq6bwi2690c564i5dnix1f9d"))))
> +    (build-system gnu-build-system)
> +    (arguments
> +     `(;; FIXME: At least "testrcore1" fails.
> +       #:tests? #f
> +       #:phases
> +       (modify-phases %standard-phases
> +         (add-after 'unpack 'replace-/bin/ls
> +           (lambda _
> +             (substitute* '("Makefile.decl"
> +                            "tools/Makefile.in"
> +                            "tests/Makefile.in"
> +                            "aidacc/tests/Makefile.in"
> +                            "aidacc/Makefile.in"
> +                            "cython/Makefile.in"
> +                            "res/Makefile.in"
> +                            "ui/tests/Makefile.in"
> +                            "ui/Makefile.in"
> +                            "docs/tutorial/Makefile.in"
> +                            "docs/mans/Makefile.in"
> +                            "docs/Makefile.in"
> +                            "docs/examples/Makefile.in"
> +                            "docs/imports/Makefile.in"
> +                            "Makefile.in"
> +                            "pytests/Makefile.in"
> +                            "examples/Makefile.in"
> +                            "data/Makefile.in"
> +                            "rcore/tests/Makefile.in"
> +                            "rcore/Makefile.in")
> +               (("/bin/ls") (which "ls")))

Can you try to use ‘find-files’ for this substitution?

Thanks,

-- 
Mathieu Lirzin



reply via email to

[Prev in Thread] Current Thread [Next in Thread]