mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-02 09:28:57 -05:00
gnu: Add pdpmake.
* gnu/packages/build-tools.scm (pdpmake): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
cd451a3971
commit
5c94582a15
1 changed files with 35 additions and 0 deletions
|
@ -1019,3 +1019,38 @@ (define-public gnulib
|
||||||
#:version "2022-12-31"
|
#:version "2022-12-31"
|
||||||
#:commit "875461ffdf58ac04677957b4ae4160465b83b940"
|
#:commit "875461ffdf58ac04677957b4ae4160465b83b940"
|
||||||
#:hash (base32 "0bf7a6wdns9c5wwv60qfcn9llg0j6jz5ryd2qgsqqx2i6xkmp77c")))
|
#:hash (base32 "0bf7a6wdns9c5wwv60qfcn9llg0j6jz5ryd2qgsqqx2i6xkmp77c")))
|
||||||
|
|
||||||
|
(define-public pdpmake
|
||||||
|
(package
|
||||||
|
(name "pdpmake")
|
||||||
|
(version "1.4.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/rmyorston/pdpmake")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0fjx5imd7s0h0yy8h2qc4vkdq7kxqcljnrw6h8n88720xha5z3cb"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:test-target "test"
|
||||||
|
#:parallel-tests? #f
|
||||||
|
#:make-flags
|
||||||
|
#~(list "DESTDIR=\"\""
|
||||||
|
(string-append "CC=" #$(cc-for-target))
|
||||||
|
(string-append "PREFIX=" #$output))
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(delete 'configure))))
|
||||||
|
(home-page "https://frippery.org/make/")
|
||||||
|
(synopsis "POSIX make")
|
||||||
|
(description
|
||||||
|
"This package contains an implementation of POSIX make. The default
|
||||||
|
configuration enables extensions. Generally these extensions are compatible
|
||||||
|
with GNU make.")
|
||||||
|
;; pdpmake is distributed under the public domain, but the sources include
|
||||||
|
;; tests under the GPL license version 2.
|
||||||
|
(license (list license:gpl2 license:public-domain))))
|
||||||
|
|
Loading…
Reference in a new issue