d6fdd397ab
The file renaming utilities consists of five programs designed to make renaming of files faster and less cumbersome: - qmv ("quick move") allows a bunch of file names to be edited in a text editor; - imv ("interactive move") allows a single file name to be edited in the terminal using the GNU Readline library - qcp and icp are similar to qmv and imv but copy files instead of moving them; - deurlname removes URL encoded characters (such as %20 representing space) from file names. PR pkg/52546, which I neglected for a year.
17 lines
500 B
Makefile
17 lines
500 B
Makefile
# $NetBSD: Makefile,v 1.1 2018/11/09 12:50:49 bsiegert Exp $
|
|
|
|
DISTNAME= renameutils-0.12.0
|
|
CATEGORIES= sysutils converters
|
|
MASTER_SITES= http://download.savannah.gnu.org/releases/renameutils/
|
|
|
|
MAINTAINER= mcy@lm7.fr
|
|
HOMEPAGE= http://www.nongnu.org/renameutils/
|
|
COMMENT= Rename files faster and more easily
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
GNU_CONFIGURE= yes
|
|
DEPENDS+= coreutils-[0-9]*:../../sysutils/coreutils
|
|
|
|
.include "options.mk"
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|