From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raimon Grau Subject: luajit recipe Date: Tue, 04 Feb 2014 22:46:25 +0100 Message-ID: <87iosulff2.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51600) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WAnxY-0008A9-Nf for guix-devel@gnu.org; Tue, 04 Feb 2014 16:55:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WAnxT-00025Q-GK for guix-devel@gnu.org; Tue, 04 Feb 2014 16:55:12 -0500 Received: from plane.gmane.org ([80.91.229.3]:49286) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WAnxT-00020R-78 for guix-devel@gnu.org; Tue, 04 Feb 2014 16:55:07 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WAnxP-0007Qn-Be for guix-devel@gnu.org; Tue, 04 Feb 2014 22:55:03 +0100 Received: from 84.red-88-19-116.staticip.rima-tde.net ([88.19.116.84]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 04 Feb 2014 22:55:03 +0100 Received: from raimonster by 84.red-88-19-116.staticip.rima-tde.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 04 Feb 2014 22:55:03 +0100 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Hi, I've been following this project for some time, and finally got through using it for a few packages, and made my first recipe. Here's the luajit recipe. I'd appreciate any comments you have on that (It's my first (hopefully not the last) contribution to this project). --=-=-= Content-Type: text/plain; charset=utf-8 Content-Disposition: inline; filename=luajit.scm Content-Transfer-Encoding: 8bit Content-Description: luajit.scm ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Raimon Grau ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages luajit) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages)) (define-public luajit (package (name "luajit") (version "2.0.2") (source (origin (method url-fetch) (uri (string-append "http://luajit.org/download/LuaJIT-" version ".tar.gz")) (sha256 (base32 "0f3cykihfdn3gi6na9p0xjd4jnv26z18m441n5vyg42q9abh4ln0")))) (build-system gnu-build-system) (arguments '(#:modules ((guix build gnu-build-system) (guix build utils) (srfi srfi-1)) #:phases (alist-replace 'install (lambda* (#:key system outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (zero? (system* "make" "install" (string-append " PREFIX=" out))))) (alist-replace 'build (lambda* (#:key system outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (zero? (system* "make" (string-append " PREFIX=" out))))) (alist-delete 'check (alist-delete 'configure %standard-phases)))))) (home-page "http://www.luajit.org/") (synopsis "Just in time compiler for Lua programming language version 5.1") (description "LuaJIT is a Just-In-Time Compiler (JIT) for the Lua programming language. Lua is a powerful, dynamic and light-weight programming language. It may be embedded or used as a general-purpose, stand-alone language. LuaJIT is Copyright © 2005-2014 Mike Pall") (license x11))) --=-=-=--