From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54023) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dGRxH-00086E-1i for guix-patches@gnu.org; Thu, 01 Jun 2017 11:24:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dGRxC-0007y5-53 for guix-patches@gnu.org; Thu, 01 Jun 2017 11:24:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47193) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dGRxC-0007xY-1a for guix-patches@gnu.org; Thu, 01 Jun 2017 11:24:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dGRxB-0000Ta-S6 for guix-patches@gnu.org; Thu, 01 Jun 2017 11:24:01 -0400 Subject: bug#27181: [PATCH] gnu: Add kaiju. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: Date: Thu, 01 Jun 2017 17:23:01 +0200 In-Reply-To: (Roel Janssen's message of "Thu, 01 Jun 2017 15:19:41 +0200") Message-ID: <877f0vyboq.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 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: Roel Janssen Cc: 27181@debbugs.gnu.org Hi Roel! Roel Janssen skribis: > From ed45f47f7514faf10710b41a7d5e9cdaa8217c70 Mon Sep 17 00:00:00 2001 > From: Roel Janssen > Date: Thu, 1 Jun 2017 15:01:51 +0200 > Subject: [PATCH] gnu: Add kaiju. > > * gnu/packages/bioinformatics (kaiju): New variable. [...] > + (modify-phases %standard-phases > + (delete 'configure) > + (add-before 'build 'move-to-src-dir > + (lambda _ (chdir "src") #t)) > + (replace 'install > + (lambda* (#:key inputs outputs #:allow-other-keys) > + (let ((bin (string-append (assoc-ref outputs "out") "/bin")= )) > + (mkdir-p bin) > + (chdir "..") > + (copy-recursively "bin" bin) > + (copy-recursively "util" bin))))))) Make sure to return #t at the end of the phase. Otherwise LGTM! Thanks, Ludo=E2=80=99.