guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: schismtracker: Update to 20221201.


From: guix-commits
Subject: 01/02: gnu: schismtracker: Update to 20221201.
Date: Tue, 25 Apr 2023 05:26:40 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit a50f0dc5ca14201d092afb4fb7b5c0b7ad9dbab0
Author: Antero Mejr <antero@mailbox.org>
AuthorDate: Tue Apr 18 01:39:31 2023 +0000

    gnu: schismtracker: Update to 20221201.
    
    * gnu/packages/music.scm (schismtracker): Update to 20221201.
    [source]: Convert snippet to gexp.
    [arguments]: Convert to gexp, add configure flags for FLAC and Wayland
    support.
    [inputs]: Remove libx11, libxext, and sdl; add flac and sdl2.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 gnu/packages/music.scm | 25 +++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index dc6f7fbbca..5d74200ca0 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -4141,7 +4141,7 @@ modes available for improved Amiga ProTracker 2/3 
compatibility.")
 (define-public schismtracker
   (package
     (name "schismtracker")
-    (version "20190805")
+    (version "20221201")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -4150,26 +4150,27 @@ modes available for improved Amiga ProTracker 2/3 
compatibility.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0qqps20vvn3rgpg8174bjrrm38gqcci2z5z4c1r1vhbccclahgsd"))
+                "11yy5zrdfvnwzwdwmc3s3lx1ymwiyp1si5mmv4h9qxipd9j96ijp"))
               (modules '((guix build utils)))
               (snippet
                ;; Remove use of __DATE__ and __TIME__ for reproducibility.
-               `(begin
-                  (substitute* "schism/version.c"
-                    (("Schism Tracker built %s %s.*$")
-                     (string-append "Schism Tracker version " ,version "\") 
;")))
-              #t))))
+               #~(substitute* "schism/version.c"
+                   (("Schism Tracker built %s %s.*$")
+                    (string-append
+                     "Schism Tracker version " #$version "\") ;"))))))
     (build-system gnu-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-before 'configure 'link-libm
-           (lambda _ (setenv "LIBS" "-lm") #t)))))
+     (list #:configure-flags #~(list "--with-flac=yes" "--with-x11=no")
+           #:phases #~(modify-phases %standard-phases
+                        (add-before 'configure 'link-libm
+                          (lambda _
+                            (setenv "LIBS" "-lm"))))))
     (native-inputs
      (list autoconf automake python))
     (inputs
      (list alsa-lib ; for asound dependency
-           libx11 libxext sdl))
+           flac
+           sdl2))
     (home-page "https://schismtracker.org";)
     (synopsis "Oldschool sample-based music composition tool")
     (description



reply via email to

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