mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 02:19:18 -05:00
gnu: libpst: Fix python detection.
* gnu/packages/mail.scm (libpst)[arguments]: Add a phase to detect newer versions of python3. [native-inputs]: Add autoconf, automake, gettext-minimal, libool.
This commit is contained in:
parent
72b1c9713b
commit
97323e5262
1 changed files with 12 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
|
||||
;;; Copyright © 2015, 2016, 2018 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2015-2023 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2016 Christine Lemmer-Webber <cwebber@dustycloud.org>
|
||||
;;; Copyright © 2016 Al McElrath <hello@yrns.org>
|
||||
;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Leo Famulari <leo@famulari.name>
|
||||
|
@ -4604,10 +4604,20 @@ (define-public libpst
|
|||
(base32
|
||||
"0hhbbb8ddsgjhv9y1xd8s9ixlhdnjmhw12v06jwx4j6vpgp1na9x"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-python-detection
|
||||
(lambda _
|
||||
(delete-file "configure")
|
||||
(substitute* "m4/ax_python.m4"
|
||||
(("python3\\.9")
|
||||
"python3.12 python3.11 python3.10 python3.9")))))))
|
||||
(inputs
|
||||
(list boost libgsf python zlib))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(list autoconf automake gettext-minimal libtool pkg-config))
|
||||
(home-page "https://www.five-ten-sg.com/libpst/")
|
||||
(synopsis "Tools to process Outlook email archives")
|
||||
(description "The Libpst utilities include @code{readpst} which can
|
||||
|
|
Loading…
Reference in a new issue