[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#73488] [PATCH 3/7] gnu: Add jgrf.
From: |
Maxim Cournoyer |
Subject: |
[bug#73488] [PATCH 3/7] gnu: Add jgrf. |
Date: |
Thu, 26 Sep 2024 12:31:39 +0900 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Hi,
Maxim Cournoyer <maxim.cournoyer@gmail.com> writes:
[...]
> + (build-system gnu-build-system)
> + (arguments
> + (list #:tests? #f ;no test suite
> + #:make-flags
> + #~(list (string-append "AR=" #$(ar-for-target))
> + (string-append "CC=" #$(cc-for-target))
> + (string-append "CXX=" #$(cxx-for-target))
> + (string-append "PREFIX=" #$output))
> + #:phases #~(modify-phases %standard-phases
> + (delete 'configure))))
> + (native-inputs (list jg-api pkg-config))
> + (inputs
> + (list libepoxy
> + libsamplerate
> + miniz
> + soxr
> + speexdsp
> + flac
> + lzo
> + sdl2
> + zlib
> + `(,zstd "lib")))
I've noticed these inputs were not sorted; now fixed in a v2 that I'll
keep locally in case there are other things to fix.
--
Thanks,
Maxim