From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:59934) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iCDxL-0004qK-QY for guix-patches@gnu.org; Sun, 22 Sep 2019 22:20:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iCDxK-0004Oz-GR for guix-patches@gnu.org; Sun, 22 Sep 2019 22:20:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54186) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iCDxK-0004Oq-Dy for guix-patches@gnu.org; Sun, 22 Sep 2019 22:20:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iCDxK-0005yo-7Y for guix-patches@gnu.org; Sun, 22 Sep 2019 22:20:02 -0400 Subject: [bug#37487] [PATCH] gnu: Add goattracker Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:54085) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iCCg1-0000R6-2g for guix-patches@gnu.org; Sun, 22 Sep 2019 20:58:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iCCfz-00022H-N8 for guix-patches@gnu.org; Sun, 22 Sep 2019 20:58:05 -0400 Received: from mout01.posteo.de ([185.67.36.141]:38122) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iCCfz-00021x-Hy for guix-patches@gnu.org; Sun, 22 Sep 2019 20:58:03 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 4A0EC16005E for ; Mon, 23 Sep 2019 02:58:02 +0200 (CEST) From: Mikhail Kirillov Date: Mon, 23 Sep 2019 03:57:52 +0300 Message-Id: <20190923005752.22876-1-w96k@member.fsf.org> MIME-Version: 1.0 Content-Type: text/plain; charset=y Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37487@debbugs.gnu.org Cc: Mikhail Kirillov * gnu/packages/music.scm: Add goattracker --- gnu/packages/music.scm | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 4d1e11f260..5cedb36695 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -23,6 +23,7 @@ ;;; Copyright =C2=A9 2019 Timotej Lazar ;;; Copyright =C2=A9 2019 Jakob L. Kreuze ;;; Copyright =C2=A9 2019 raingloom +;;; Copyright =C2=A9 2019 Mikhail Kirillov ;;; ;;; This file is part of GNU Guix. ;;; @@ -4592,3 +4593,45 @@ with error and volume history, and advanced featur= es.") ;; Most of the code is under GPL2+, but some abstract or helper clas= ses ;; are under LGPL2.1. (license (list license:gpl2+ license:lgpl2.1)))) + +(define-public goattracker + (package + (name "goattracker") + (version "2.75") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/goattracker2/GoatTracker 2/" + version "/GoatTracker_" version ".zip")) + (sha256 + (base32 + "1km97nl7qvk6qc5l5j69wncbm76hf86j47sgzgr968423g0bxxlk"))= )) + (arguments + `(#:tests? #f + #:make-flags '("CC=3Dgcc") + #:phases + (modify-phases %standard-phases + (delete 'configure) + (add-after 'unpack 'prepare + (lambda _ + (chdir "src") + (invoke "make" "clean") + #t)) + (replace 'install + (lambda* (#:key inputs outputs #:allow-other-keys) + (chdir "../linux") + (invoke "ln" "-s" "goattrk2" "goattracker") + (copy-recursively "./" (string-append + (assoc-ref %outputs "out") + "/bin")) + #t))))) + (native-inputs + `(("sdl" ,sdl) + ("unzip" ,unzip))) + (build-system gnu-build-system) + (synopsis "Crossplatform C64 music tracker") + (description "GoatTracker is a cross-platform tracker written by Las= se +=C3=96=C3=B6rni, producing SID chiptune music for the Commodore 64, and = released with +source code under the GPL.") + (home-page "https://goattracker2.sourceforge.io/") + (license license:gpl2))) --=20 2.23.0