From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jone Subject: Simple configure-make-make_install with Guix Date: Thu, 24 May 2018 22:48:48 +0000 Message-ID: <87in7c7jqn.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53671) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fLwEF-0004Sx-1L for help-guix@gnu.org; Thu, 24 May 2018 15:48:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fLwEC-00077m-02 for help-guix@gnu.org; Thu, 24 May 2018 15:48:51 -0400 Received: from mail-wm0-x22d.google.com ([2a00:1450:400c:c09::22d]:40761) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fLwEB-00077d-Pp for help-guix@gnu.org; Thu, 24 May 2018 15:48:47 -0400 Received: by mail-wm0-x22d.google.com with SMTP id x2-v6so1208066wmh.5 for ; Thu, 24 May 2018 12:48:47 -0700 (PDT) Received: from guix ([93.100.210.215]) by smtp.gmail.com with ESMTPSA id f10-v6sm4141736ljg.2.2018.05.24.12.48.45 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 24 May 2018 12:48:45 -0700 (PDT) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org Hello! I'm wondering, how could I operate with unpacked sources? So far I see only this: guix build -f /home/jone/Desktop/template.scm guix build: error: #: not something we can build Files: 1. template.scm (use-modules (ice-9 match) (srfi srfi-1) (guix gexp) (guix licenses) (guix build-system gnu) (guix packages) (gnu packages) (gnu packages glib) (gnu packages gtk) (gnu packages audio)) (define-public gvolwheel (package (name "gvolwheel") (version "-1.0") (source (local-file "/home/jone/Desktop/gvolwheel-1.0" #:recursive? #t)) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("alsa-lib" ,alsa-lib) ("gtk+" ,gtk+))) (synopsis "test") (description "test") (home-page "https://sourceforge.net/projects/gvolwheel") (license gpl2))) 2. ls -1 . aclocal.m4 AUTHORS ChangeLog config.guess config.h.in config.sub configure configure.ac COPYING depcomp INSTALL install-sh ltmain.sh Makefile.am Makefile.in missing mkinstalldirs NEWS pixmaps po README src This is just an example (a little harder than "GNU Hello"). I would like to learn to build such things.