blob: 47622d63c6352e72440bb8eee9f33c17753d1913 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Created by: Emanuel Haupt <ehaupt@critical.ch>
# $FreeBSD$
PORTNAME= fdupes
DISTVERSION= 1.50-PR2
CATEGORIES= sysutils
MASTER_SITES= CRITICAL
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Fdupes is a program for identifying or deleting duplicate files
LICENSE= MIT
MAN1= fdupes.1
PLIST_FILES= bin/fdupes
CFLAGS+= -DVERSION=\"${PORTVERSION}\"
NO_STAGE= yes
do-build:
${CC} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c ${WRKSRC}/md5/md5.c \
-o ${WRKSRC}/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
.include <bsd.port.mk>
|