gnu: minicom: Update package style.
* gnu/packages/engineering.scm (minicom)[arguments]: Rewrite as G-expressions. [native-inputs]: Remove input labels.
This commit is contained in:
parent
fd2f78f5fc
commit
e82cd9176e
1 changed files with 17 additions and 18 deletions
|
@ -1499,9 +1499,11 @@ replacement for the OpenDWG libraries.")
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--enable-lock-dir=/var/lock")
|
(list
|
||||||
|
#:configure-flags
|
||||||
|
#~(list "--enable-lock-dir=/var/lock")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'make-git-checkout-writable
|
(add-after 'unpack 'make-git-checkout-writable
|
||||||
(lambda _
|
(lambda _
|
||||||
(for-each make-file-writable (find-files "."))))
|
(for-each make-file-writable (find-files "."))))
|
||||||
|
@ -1514,10 +1516,7 @@ replacement for the OpenDWG libraries.")
|
||||||
(substitute* "configure"
|
(substitute* "configure"
|
||||||
(("test -d [$]UUCPLOCK") "true")))))))
|
(("test -d [$]UUCPLOCK") "true")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf-2.71)
|
(list autoconf-2.71 automake gettext-minimal pkg-config))
|
||||||
("automake" ,automake)
|
|
||||||
("gettext" ,gettext-minimal)
|
|
||||||
("pkg-config" ,pkg-config)))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list ncurses))
|
(list ncurses))
|
||||||
(home-page "https://salsa.debian.org/minicom-team/minicom")
|
(home-page "https://salsa.debian.org/minicom-team/minicom")
|
||||||
|
|
Reference in a new issue