mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: fuse-exfat: Update to 1.2.5.
* gnu/packages/linux.scm (fuse-exfat): Update to 1.2.5. [native-inputs]: Remove scons build system which is no longer used. [arguments]: Remove. [home-page]: Replace dead Google Code home page.
This commit is contained in:
parent
694f485b47
commit
c0cc805e3f
1 changed files with 7 additions and 41 deletions
|
@ -2563,55 +2563,21 @@ (define-public bluez
|
||||||
(define-public fuse-exfat
|
(define-public fuse-exfat
|
||||||
(package
|
(package
|
||||||
(name "fuse-exfat")
|
(name "fuse-exfat")
|
||||||
(version "1.1.0")
|
(version "1.2.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri "https://docs.google.com/uc?export=download&\
|
(uri (string-append
|
||||||
id=0B7CLI-REKbE3VTdaa0EzTkhYdU0")
|
"https://github.com/relan/exfat/releases/download/v"
|
||||||
|
version "/" name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0glmgwrf0nv09am54i6s35ksbvrywrwc51w6q32mv5by8475530r"))
|
"1i0sh0s6wnm4dqxli3drva871wgbbm57qjf592vnswna9hc6bvim"))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("scons" ,scons)
|
`(("pkg-config" ,pkg-config)))
|
||||||
("pkg-config" ,pkg-config)))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("fuse" ,fuse)))
|
`(("fuse" ,fuse)))
|
||||||
(arguments
|
(home-page "https://github.com/relan/exfat")
|
||||||
'(#:tests? #f ;no test suite
|
|
||||||
|
|
||||||
;; XXX: Factorize with 'exfat-utils'.
|
|
||||||
#:phases (modify-phases %standard-phases
|
|
||||||
(delete 'configure)
|
|
||||||
(add-after 'unpack 'scons-propagate-environment
|
|
||||||
(lambda _
|
|
||||||
;; Modify the SConstruct file to arrange for
|
|
||||||
;; environment variables to be propagated.
|
|
||||||
(substitute* "SConstruct"
|
|
||||||
(("^env = Environment\\(")
|
|
||||||
"env = Environment(ENV=os.environ, "))))
|
|
||||||
(replace 'build
|
|
||||||
(lambda _
|
|
||||||
(zero? (system* "scons"))))
|
|
||||||
(replace 'install
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
|
||||||
(bin (string-append out "/bin"))
|
|
||||||
(man8 (string-append out
|
|
||||||
"/share/man/man8")))
|
|
||||||
(mkdir-p bin)
|
|
||||||
(mkdir-p man8)
|
|
||||||
(for-each (lambda (file)
|
|
||||||
(copy-file
|
|
||||||
file
|
|
||||||
(string-append man8 "/"
|
|
||||||
(basename file))))
|
|
||||||
(find-files "." "\\.8$"))
|
|
||||||
(zero? (system* "scons" "install"
|
|
||||||
(string-append "DESTDIR="
|
|
||||||
bin)))))))))
|
|
||||||
(home-page "http://code.google.com/p/exfat/")
|
|
||||||
(synopsis "Mount exFAT file systems")
|
(synopsis "Mount exFAT file systems")
|
||||||
(description
|
(description
|
||||||
"This package provides a FUSE-based file system that provides read and
|
"This package provides a FUSE-based file system that provides read and
|
||||||
|
|
Loading…
Reference in a new issue