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:
Felix Gruber 2021-04-03 11:56:20 +02:00 committed by Guillaume Le Vaillant
parent 35351dfd97
commit f4b78c22a1
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -1102,7 +1102,7 @@ (define-public osm2pgsql
(define-public tippecanoe
(package
(name "tippecanoe")
(version "1.31.5")
(version "1.36.0")
(source
(origin
(method git-fetch)
@ -1111,14 +1111,14 @@ (define-public tippecanoe
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1m0x931a945sr7axyhcvpwh798m58hx1zxh6ikgf9gsgqhdhmszz"))))
(base32 "0lbmhly4ivnqc6qk1k3sdqvsg6x3nfd8gnjx846bhqj4wag3f88m"))))
(build-system gnu-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases (delete 'configure))
#:test-target "test"
#:make-flags
(list "CC=gcc"
(list (string-append "CC=" ,(cc-for-target))
(string-append "PREFIX=" (assoc-ref %outputs "out")))))
(inputs
`(("perl" ,perl)