summaryrefslogtreecommitdiff
path: root/gnu/packages/shellutils.scm
diff options
context:
space:
mode:
authorWiktor Żelazny <wz@freeshell.de>2021-10-13 19:01:13 +0200
committerLudovic Courtès <ludo@gnu.org>2021-11-14 00:25:30 +0100
commitd0313cdf5f2288a8884b8550d1381627df209aa6 (patch)
treec0094871d4249ea976ee4e5776538f757e81bae4 /gnu/packages/shellutils.scm
parent704bd694d198ed568349e4772bc6488a58f15d8b (diff)
gnu: Add renameutils.
* gnu/packages/shellutils.scm (renameutils): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/shellutils.scm')
-rw-r--r--gnu/packages/shellutils.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index 6e64cee1da0..19effc34cca 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -13,6 +13,7 @@
13;;; Copyright © 2021 Alexandr Vityazev <avityazev@posteo.org> 13;;; Copyright © 2021 Alexandr Vityazev <avityazev@posteo.org>
14;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz> 14;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
15;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo@hotmail.com> 15;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo@hotmail.com>
16;;; Copyright © 2021 Wiktor Żelazny <wzelazny@vurv.cz>
16;;; 17;;;
17;;; This file is part of GNU Guix. 18;;; This file is part of GNU Guix.
18;;; 19;;;
@@ -512,3 +513,32 @@ real person, and are too lazy to think of one yourself. Also, if the Web
512site/BBS/person you are giving the information to tries to cross-check the 513site/BBS/person you are giving the information to tries to cross-check the
513city, state, zip, or area code, it will check out.") 514city, state, zip, or area code, it will check out.")
514 (license license:gpl2+))) 515 (license license:gpl2+)))
516
517(define-public renameutils
518 (package
519 (name "renameutils")
520 (version "0.12.0")
521 (source
522 (origin
523 (method url-fetch)
524 (uri
525 (string-append "https://download.savannah.gnu.org/releases/renameutils/"
526 name "-" version ".tar.gz"))
527 (sha256
528 (base32
529 "18xlkr56jdyajjihcmfqlyyanzyiqqlzbhrm6695mkvw081g1lnb"))
530 (modules '((guix build utils)))
531 (snippet '(begin
532 (substitute* "src/Makefile.in"
533 (("\\(\\$bindir\\)") "$(bindir)"))
534 #t))))
535 (build-system gnu-build-system)
536 (inputs
537 `(("readline" ,readline)))
538 (home-page "https://www.nongnu.org/renameutils/")
539 (synopsis "File renaming utilities")
540 (description "The file renaming utilities (renameutils for short) are a set
541of programs designed to make renaming of files faster and less cumbersome. The
542file renaming utilities consists of five programs - qmv, qcp, imv, icp and
543deurlname.")
544 (license license:gpl3)))