mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-14 11:00:36 +02:00
gnu: xfel: Update to 1.3.3.
* gnu/packages/admin.scm (xfel): Update to 1.3.3. [arguments]<#:phases>: Patch Makefile to replace hard-coded paths (see <https://github.com/xboot/xfel/issues/74>.) Change-Id: I11ac84762f04fdf0fb205227db10a5273d25c7c5
This commit is contained in:
parent
6c6eb63549
commit
f71f092210
1 changed files with 12 additions and 3 deletions
|
@ -4251,7 +4251,7 @@ in order to be able to find it.
|
||||||
(define-public xfel
|
(define-public xfel
|
||||||
(package
|
(package
|
||||||
(name "xfel")
|
(name "xfel")
|
||||||
(version "1.3.2")
|
(version "1.3.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -4259,7 +4259,7 @@ in order to be able to find it.
|
||||||
(url "https://github.com/xboot/xfel")
|
(url "https://github.com/xboot/xfel")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1x69lh0dhr3kkkrcv9wziz7m19apj4ygvss95rdb82wnl27gwrvy"))
|
(base32 "15xlqkj7lf3xszgfyci32lrwdjhqmmm9clmwlp1qn6hywal3d2p4"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
|
@ -4272,7 +4272,16 @@ in order to be able to find it.
|
||||||
(string-append "DESTDIR=" #$output))
|
(string-append "DESTDIR=" #$output))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'configure))))
|
(delete 'configure)
|
||||||
|
(add-after 'unpack 'patch-makefile
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Makefile"
|
||||||
|
(("/usr/local")
|
||||||
|
#$output)
|
||||||
|
(("/usr/share")
|
||||||
|
(string-append #$output "/share/"))
|
||||||
|
(("/etc/udev/rules.d")
|
||||||
|
(string-append #$output "/lib/udev/rules.d"))))))))
|
||||||
(home-page "https://github.com/xboot/xfel")
|
(home-page "https://github.com/xboot/xfel")
|
||||||
(synopsis "Remote debugging tool for Allwinner devices")
|
(synopsis "Remote debugging tool for Allwinner devices")
|
||||||
(description "This package contains a debugging tool for Allwinner devices
|
(description "This package contains a debugging tool for Allwinner devices
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue