gnu: tippecanoe: Update to 1.36.0.
* gnu/packages/geo.scm (tippecanoe): Update to 1.36.0. [arguments]: Use cc-for-target instead of hard-coding gcc. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
35351dfd97
commit
f4b78c22a1
1 changed files with 3 additions and 3 deletions
|
@ -1102,7 +1102,7 @@ (define-public osm2pgsql
|
||||||
(define-public tippecanoe
|
(define-public tippecanoe
|
||||||
(package
|
(package
|
||||||
(name "tippecanoe")
|
(name "tippecanoe")
|
||||||
(version "1.31.5")
|
(version "1.36.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1111,14 +1111,14 @@ (define-public tippecanoe
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1m0x931a945sr7axyhcvpwh798m58hx1zxh6ikgf9gsgqhdhmszz"))))
|
(base32 "0lbmhly4ivnqc6qk1k3sdqvsg6x3nfd8gnjx846bhqj4wag3f88m"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases (delete 'configure))
|
(modify-phases %standard-phases (delete 'configure))
|
||||||
#:test-target "test"
|
#:test-target "test"
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list "CC=gcc"
|
(list (string-append "CC=" ,(cc-for-target))
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))))
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("perl" ,perl)
|
`(("perl" ,perl)
|
||||||
|
|
Loading…
Reference in a new issue