mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: libplist: Update to 2.1.0.
* gnu/packages/libusb.scm (libplist): Update to 2.1.0. [source]: Use GIT-FETCH and GIT-FILE-NAME. [arguments]: Add ‘configure-later’ phase. [native-inputs]: Add autoconf, automake, and libtool.
This commit is contained in:
parent
6bd856d1b7
commit
f64d79e8be
1 changed files with 26 additions and 14 deletions
|
@ -305,25 +305,37 @@ (define-public python2-pyusb
|
||||||
(define-public libplist
|
(define-public libplist
|
||||||
(package
|
(package
|
||||||
(name "libplist")
|
(name "libplist")
|
||||||
(version "2.0.0")
|
(version "2.1.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://www.libimobiledevice.org/downloads/"
|
(method git-fetch)
|
||||||
"libplist-" version ".tar.bz2"))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/libimobiledevice/libplist.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "02vraf4j46bp746s0gz7vga2gv2dy3zd1v1bsy9x8algg9fpcb7n"))))
|
||||||
"00pnh9zf3iwdji2faccns7vagbmbrwbj9a8zp9s53a6rqaa9czis"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'bootstrap 'configure-later
|
||||||
|
;; Don't run ./configure during bootstrap.
|
||||||
|
(lambda _
|
||||||
|
(setenv "NOCONFIGURE" "set")
|
||||||
|
#t)))
|
||||||
;; Tests fail randomly when run in parallel because several of them write
|
;; Tests fail randomly when run in parallel because several of them write
|
||||||
;; and read to/from the same file--e.g., "4.plist" is accessed by
|
;; and read to/from the same file--e.g., "4.plist" is accessed by
|
||||||
;; 'large.test' and 'largecmp.test'.
|
;; 'large.test' and 'largecmp.test'.
|
||||||
'(#:parallel-tests? #f))
|
#:parallel-tests? #f))
|
||||||
(inputs
|
(inputs
|
||||||
`(("python" ,python)))
|
`(("python" ,python)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("autoconf" ,autoconf)
|
||||||
("python-cython" ,python-cython)))
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
|
("python-cython" ,python-cython))) ; to build Python bindings
|
||||||
(home-page "https://www.libimobiledevice.org/")
|
(home-page "https://www.libimobiledevice.org/")
|
||||||
(synopsis "C library to handle Apple Property List files")
|
(synopsis "C library to handle Apple Property List files")
|
||||||
(description "This package provides a small portable C library to handle
|
(description "This package provides a small portable C library to handle
|
||||||
|
|
Loading…
Reference in a new issue