diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-21 15:09:40 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-21 15:26:42 +0100 |
commit | 6adfb380871e06ea464bce42778380e8617851b8 (patch) | |
tree | 1793b21dffc13eebabc4def57a7c78cd0fd9edd7 | |
parent | 61bc31ae3185178abfc598c5436104c7f94e2d4e (diff) | |
download | guix-6adfb380871e06ea464bce42778380e8617851b8.tar.gz guix-6adfb380871e06ea464bce42778380e8617851b8.zip |
gnu: swftools: Update to 0.9.2-2.c6a18ab, fix build.
* gnu/packages/animation.scm (swftools): Update to 0.9.2-2.c6a18ab, fix
build.
[arguments] <parallel-build?>: Build in a single thread otherwise it's
failing.
Change-Id: If6a729e7cf93e801e2c97c4db6d602ed7e2265bd
-rw-r--r-- | gnu/packages/animation.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/animation.scm b/gnu/packages/animation.scm index a877260f6f..4e1db12653 100644 --- a/gnu/packages/animation.scm +++ b/gnu/packages/animation.scm @@ -420,9 +420,10 @@ and vector graphics.") (define-public swftools ;; Last release of swftools was 0.9.2 on 2012-04-21 - it is really old and - ;; does not compile with what's available in guix, master on the other hand works. - (let ((commit "772e55a271f66818b06c6e8c9b839befa51248f4") - (revision "1")) + ;; does not compile with what's available in guix, master on the other hand + ;; works. + (let ((commit "c6a18ab0658286f98d6ed2b3d0419058e86a14a0") + (revision "2")) (package (name "swftools") (version (git-version "0.9.2" revision commit)) @@ -433,7 +434,7 @@ and vector graphics.") (url "https://github.com/matthiaskramm/swftools") (commit commit))) (sha256 - (base32 "0a8a29rn7gpxnba3spnvkpdgr7mdlssvr273mzw5b2wjvbzard3w")) + (base32 "1hdfyprjjhhlba3gszaarf1rv3jynm4hs4v8kdys03qz4g8i53by")) (file-name (git-file-name name version)) (modules '((guix build utils))) (snippet @@ -453,7 +454,8 @@ and vector graphics.") (("inline (void bitpressure_strategy1)" _ f) f)))))) (build-system gnu-build-system) (arguments - (list #:tests? #f)) ; no rule for check + (list #:tests? #f ; no rule for check + #:parallel-build? #f)) (inputs (list zlib freetype giflib libjpeg-turbo lame)) (native-inputs (list perl)) (home-page "http://www.swftools.org") |