41d7e58b3b
- Make portlint/portfmt happy PR: 247057 Submitted by: Thomas Hurst <tom@hur.st> (maintainer) Approved by: mentors (implicit) MFH: 2020Q2 (important bugfix; potential data loss) Changelog: https://github.com/jbruchon/jdupes/releases/tag/v1.13 https://github.com/jbruchon/jdupes/releases/tag/v1.13.1 https://github.com/jbruchon/jdupes/releases/tag/v1.13.2 https://github.com/jbruchon/jdupes/releases/tag/v1.13.3 https://github.com/jbruchon/jdupes/releases/tag/v1.14.0 https://github.com/jbruchon/jdupes/releases/tag/v1.15.0 https://github.com/jbruchon/jdupes/releases/tag/v1.16.0
31 lines
693 B
Makefile
31 lines
693 B
Makefile
# Created by: Thomas Hurst <tom@hur.st>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jdupes
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.16.0
|
|
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= 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>
|