gnu: iniparser: Return #t from all phases.

* gnu/packages/samba.scm (iniparser)[arguments]: Return #t from the custom
configure and install phases.
master
Mark H Weaver 2018-04-12 03:45:00 -04:00
parent 0371132c37
commit 444173f237
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 4 additions and 2 deletions

View File

@ -112,7 +112,8 @@ the Linux kernel CIFS client.")
(lambda* (#:key outputs #:allow-other-keys)
(substitute* '("Makefile" "test/Makefile")
(("/usr/lib")
(string-append (assoc-ref outputs "out") "/lib")))))
(string-append (assoc-ref outputs "out") "/lib")))
#t))
(replace 'build
(lambda* (#:key make-flags #:allow-other-keys)
(apply invoke "make" "libiniparser.so.1"
@ -136,7 +137,8 @@ the Linux kernel CIFS client.")
(for-each (install html)
(find-files "html" ".*"))
(for-each (install doc)
'("AUTHORS" "INSTALL" "LICENSE" "README.md"))))))))
'("AUTHORS" "INSTALL" "LICENSE" "README.md"))
#t))))))
(home-page "https://github.com/ndevilla/iniparser")
(synopsis "Standalone ini file parsing library")
(description