;;;Author Jovany Leandro G.C ;;;LICENSE FREE AS GUIX (define-module (contrib autotools) #:use-module (guix licenses) #:use-module (gnu packages) #:use-module (gnu packages perl) #:use-module (gnu packages m4) #:use-module (gnu packages bash) #:use-module (guix utils) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix build-system trivial) #:use-module (ice-9 match) #:export (autoconf-wrapper)) ;;this copy from guix-master (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+)))