gnu: flrig: Use git repository.

The tarballs of older versions are not kept on the website.

* gnu/packages/radio.scm (flrig)[source]: Switch to git repository.
  [native-inputs]: Add autoconf and automake.
This commit is contained in:
Guillaume Le Vaillant 2021-02-12 14:41:11 +01:00
parent 512459f6f6
commit 9e54963382
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -623,14 +623,18 @@ (define-public flrig
(version "1.3.52")
(source
(origin
(method url-fetch)
(uri (string-append "http://www.w1hkj.com/files/flrig/flrig-"
version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://git.code.sf.net/p/fldigi/flrig")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "18c154080vl25cy4l5amh96abm6kzm7mzld9h58pabc28yqq8zl8"))))
(base32 "0vxn1wy5b2zfq20k93rfgq34m1nd3mxd74h8l98f90d85fhcqggy"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
`(("autoconf" ,autoconf)
("automake" ,automake)
("pkg-config" ,pkg-config)))
(inputs
`(("fltk" ,fltk)
("libx11" ,libx11)