guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#51184] [PATCH] gnu: Add renameutils.


From: Wiktor Żelazny
Subject: [bug#51184] [PATCH] gnu: Add renameutils.
Date: Wed, 13 Oct 2021 19:01:13 +0200

* gnu/packages/admin.scm (renameutils): New variable.
---
 gnu/packages/admin.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 850372bdc6..9faf2fca61 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -44,6 +44,7 @@
 ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
 ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
+;;; Copyright © 2021 Wiktor Żelazny <wzelazny@vurv.cz>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4794,3 +4795,32 @@ setup, maintenance, supervision, or any long-running 
processes.")
       (description "Utility to convert @code{lsof} output to a graph showing
 FIFO and UNIX interprocess communication.")
       (license license:bsd-2))))
+
+(define-public renameutils
+  (package
+    (name "renameutils")
+    (version "0.12.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append 
"https://download.savannah.gnu.org/releases/renameutils/";
+                       name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "18xlkr56jdyajjihcmfqlyyanzyiqqlzbhrm6695mkvw081g1lnb"))
+       (modules '((guix build utils)))
+       (snippet '(begin
+                   (substitute* "src/Makefile.in"
+                     (("\\(\\$bindir\\)") "$(bindir)"))
+                   #t))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("readline" ,readline)))
+    (home-page "https://www.nongnu.org/renameutils/";)
+    (synopsis "File renaming utilities")
+    (description "The file renaming utilities (renameutils for short) are a set
+of programs designed to make renaming of files faster and less cumbersome.  The
+file renaming utilities consists of five programs - qmv, qcp, imv, icp and
+deurlname.")
+    (license license:gpl3)))

base-commit: 37832406bef8e9b61b1c3b533988d5a873cb9a21
-- 
2.33.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]