1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00
freebsd-ports/sysutils/cdircmp/Makefile
2021-04-06 16:31:07 +02:00

26 lines
536 B
Makefile

# Created by: Emanuel Haupt <ehaupt@critical.ch>
PORTNAME= cdircmp
PORTVERSION= 0.3
CATEGORIES= sysutils
MASTER_SITES= LOCAL/ehaupt
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Compare directories and select files to copy
LICENSE= GPLv2
USES= ncurses
LDFLAGS+= -lncurses -lform
PLIST_FILES= bin/cdircmp
do-build:
${CC} ${CFLAGS} -c ${WRKSRC}/main.c -o ${WRKSRC}/main.o
${CC} ${LDFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/main.o
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>