mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
31 lines
668 B
Makefile
31 lines
668 B
Makefile
# Created by: Thomas Hurst <tom@hur.st>
|
|
|
|
PORTNAME= jdupes
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.19.2
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= tom@hur.st
|
|
COMMENT= Powerful duplicate file finder and an enhanced fork of 'fdupes'
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= gmake
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jbruchon
|
|
|
|
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= LOW_MEMORY=1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|