gnu: duperemove: Update to 0.11.

* gnu/packages/disk.scm (duperemove): Update to 0.11.
master
Tobias Geerinckx-Rice 2018-05-31 04:18:01 +02:00
parent 42d93a32ee
commit 51c4fb007a
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 5 additions and 6 deletions

View File

@ -464,15 +464,15 @@ a card with a smaller capacity than stated.")
(define-public duperemove (define-public duperemove
(package (package
(name "duperemove") (name "duperemove")
(version "v0.11.beta4") (version "0.11")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"https://github.com/markfasheh/duperemove/archive/" "https://github.com/markfasheh/duperemove/archive/v"
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1h5nk03kflfnzihvn2rvfz1h623x1zpkn9hp29skd7n3f2bc5k7x")) "0rjmmh42yqw9a5j6sp31cqwxk3s97dsi4xz0wpxpllj7bsp3aiw5"))
(file-name (string-append name "-" version ".tar.gz")))) (file-name (string-append name "-" version ".tar.gz"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
@ -481,11 +481,10 @@ a card with a smaller capacity than stated.")
`(("glib" ,glib) `(("glib" ,glib)
("sqlite" ,sqlite))) ("sqlite" ,sqlite)))
(arguments (arguments
`(#:tests? #f ;no test suite `(#:tests? #f ; no test suite
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
;; no configure script (delete 'configure)) ; no configure script
(delete 'configure))
#:make-flags (list (string-append "PREFIX=" %output) #:make-flags (list (string-append "PREFIX=" %output)
"CC=gcc"))) "CC=gcc")))
(home-page "https://github.com/markfasheh/duperemove") (home-page "https://github.com/markfasheh/duperemove")