summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0 <ng0@infotropique.org>2017-10-07 10:20:29 +0000
committerng0 <ng0@infotropique.org>2017-10-07 10:20:29 +0000
commitd7ce457c1b3c72fbc73cc18eab5b6b025f10ee8c (patch)
treeca55250146f6b0839128c3328307497d0d5eb396
parent64d20516fc61405cf0de4db0b0b8c52b3cafe917 (diff)
downloadgnurl-d7ce457c1b3c72fbc73cc18eab5b6b025f10ee8c.tar.gz
gnurl-d7ce457c1b3c72fbc73cc18eab5b6b025f10ee8c.tar.bz2
gnurl-d7ce457c1b3c72fbc73cc18eab5b6b025f10ee8c.zip
Update guix-gnurl.scm to recent guix master changes.
-rw-r--r--guix-gnurl.scm13
1 files changed, 10 insertions, 3 deletions
diff --git a/guix-gnurl.scm b/guix-gnurl.scm
index 80c93ebff..ff34365ba 100644
--- a/guix-gnurl.scm
+++ b/guix-gnurl.scm
@@ -3,7 +3,7 @@
;;; *
;;; * Copyright (C) 2016, 2017 ng0 <ng0@infotropique.org>.
;;; *
-;;; * This file is an appendum to gnurl.
+;;; * This file is an appendum to gnURL.
;;; *
;;; * This software is licensed as described in the file COPYING, which
;;; * you should have received as part of this distribution. The terms
@@ -40,17 +40,24 @@
(package
(inherit gnurl)
(name "gnurl-git")
- (version (string-append "7.55.1-" "dev"))
+ (version (string-append "7.56.0-" "dev"))
(source
(local-file %source-dir
#:recursive? #t))
+ (inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ,@(package-inputs gnurl)))
(arguments
(substitute-keyword-arguments (package-arguments gnurl)
((#:phases phases)
`(modify-phases ,phases
+ (add-after 'unpack 'autoconf
+ (lambda _
+ (zero? (system* "sh" "buildconf"))))
(add-after 'build 'dist
(lambda _
- (zero? (system* "maketgz" "7.55.1-3"))))))))))
+ (zero? (system* "maketgz" "7.56.0-dev"))))))))))
;; (add-after 'check 'dist-check
;; (lambda _
;; (zero? (system* "make" "distcheck"))))))))))