unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: Jone <yeger9@gmail.com>
To: Julien Lepiller <julien@lepiller.eu>
Cc: help-guix@gnu.org
Subject: Re: Simple configure-make-make_install with Guix
Date: Fri, 25 May 2018 01:07:32 +0000	[thread overview]
Message-ID: <87fu2g7dbf.fsf@gmail.com> (raw)
In-Reply-To: <20180524215337.3ae1ffe0@lepiller.eu> (message from Julien Lepiller on Thu, 24 May 2018 21:53:36 +0200)

Thanks, Julien.
Minimal working variant:

(use-modules
 (ice-9 match)
 (srfi srfi-1)
 (guix gexp)
 (guix licenses)
 (guix build-system gnu)
 (guix packages)
 (gnu packages)
 (gnu packages gettext)
 (gnu packages pkg-config)
 (gnu packages glib)
 (gnu packages gtk)
 (gnu packages linux)
 (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)
   ;; see https://github.com/pjotrp/guix-notes/blob/master/HACKING.org
   (arguments
	'(#:phases
	  (modify-phases %standard-phases
					 (delete 'check))))
   (native-inputs
	`(("pkg-config" ,pkg-config)
	  ("intltool" ,intltool)
	  ("gettext" ,gettext-minimal)))
   (inputs
	`(("alsa-lib" ,alsa-lib)
	  ("gtk+" ,gtk+)))
   (synopsis "Volume control")
   (description "ALSA mixer")
   (home-page "https://sourceforge.net/projects/gvolwheel")
   (license gpl2)))
gvolwheel

What else should I fix in this package definition? 

  reply	other threads:[~2018-05-24 22:07 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-24 22:48 Simple configure-make-make_install with Guix Jone
2018-05-24 19:53 ` Julien Lepiller
2018-05-25  1:07   ` Jone [this message]
2018-05-25  8:18     ` Julien Lepiller
2018-05-25 18:33       ` Jone

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87fu2g7dbf.fsf@gmail.com \
    --to=yeger9@gmail.com \
    --cc=help-guix@gnu.org \
    --cc=julien@lepiller.eu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).