mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
510c2f2355
jdupes is a program for identifying and taking actions upon duplicate files. It is a fork of fdupes, but not a drop-in replacement. See http://www.virkki.com/jyri/articles/index.php/dupd-vs-jdupes-take-2/ for a comparision to dupd. WWW: https://github.com/jbruchon/jdupes PR: 218665 Submitted by: Thomas Hurst <tom@hur.st>
31 lines
684 B
Makefile
31 lines
684 B
Makefile
# Created by: Thomas Hurst <tom@hur.st>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jdupes
|
|
PORTVERSION= 1.8
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= tom@hur.st
|
|
COMMENT= Powerful duplicate file finder and an enhanced fork of 'fdupes'
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jbruchon
|
|
|
|
USES= gmake
|
|
|
|
PLIST_FILES= bin/jdupes man/man1/jdupes.1.gz
|
|
|
|
OPTIONS_DEFINE= LOW_MEMORY
|
|
LOW_MEMORY_DESC= Build for lower memory usage instead of speed
|
|
LOW_MEMORY_MAKE_ENV= CFLAGS_EXTRA=-DLOW_MEMORY
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|