guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add autoconf-archive.


From: David Thompson
Subject: 01/02: gnu: Add autoconf-archive.
Date: Thu, 26 May 2016 12:58:42 +0000 (UTC)

davexunit pushed a commit to branch master
in repository guix.

commit 6b0686fa9350cad5aa5cd85abd6721f4c12cc0ba
Author: David Thompson <address@hidden>
Date:   Tue May 24 12:47:49 2016 -0400

    gnu: Add autoconf-archive.
    
    * gnu/packages/autotools.scm (autoconf-archive): New variable.
---
 gnu/packages/autotools.scm |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
index ddc628d..de7f1f6 100644
--- a/gnu/packages/autotools.scm
+++ b/gnu/packages/autotools.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2015 Mathieu Lirzin <address@hidden>
 ;;; Copyright © 2014 Manolis Fragkiskos Ragkousis <address@hidden>
 ;;; Copyright © 2015 Mark H Weaver <address@hidden>
+;;; Copyright © 2016 David Thompson <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -159,6 +160,27 @@ exec ~a --no-auto-compile \"$0\" \"address@hidden"
                 port)))
            (chmod (string-append bin "/autoconf") #o555)))))))
 
+(define-public autoconf-archive
+  (package
+    (name "autoconf-archive")
+    (version "2016.03.20")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://gnu/autoconf-archive/autoconf-archive-"
+                          version ".tar.xz"))
+      (sha256
+       (base32
+        "0dz4fnc723jqn3by22ds5fys7g31apzm1r9allldvva0yvzjxyw8"))))
+    (build-system gnu-build-system)
+    (home-page "https://www.gnu.org/software/autoconf-archive";)
+    (synopsis "Collection of freely reusable Autoconf macros")
+    (description
+     "Autoconf Archive is a collection of over 450 new macros for Autoconf,
+greatly expanding the domain of its functionality.  These macros have been
+contributed as free software by the community.")
+    (license gpl3+)))
+
 (define-public autobuild
   (package
     (name "autobuild")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]