Files
ports/archivers/zip/Makefile
T
tb 1630ae57d6 zip: fix applying changes with zipnote
zipnote closes the wrong file, which prevents it from reading and applying
modifications.

hunted down to some linux forum by Tymo Myyrä
2024-10-03 17:31:57 +00:00

32 lines
615 B
Makefile

COMMENT= create/update ZIP files compatible with PKZip(tm)
VERSION= 3.0
REVISION= 3
DISTNAME= zip${VERSION:S/.//}
PKGNAME= zip-${VERSION}
CATEGORIES= archivers
HOMEPAGE= https://infozip.sourceforge.net/
# Conditional
PERMIT_PACKAGE= Yes
WANTLIB += c
SITES= ${SITE_SOURCEFORGE:=infozip/}
MAKE_FLAGS= CC="${CC}" CFLAGS_NOOPT="${CFLAGS} -I. -DUNIX"
MAKE_FILE= unix/Makefile
ALL_TARGET= generic
NO_TEST= Yes
do-install:
.for prog in zip zipcloak zipnote zipsplit
${INSTALL_PROGRAM} ${WRKBUILD}/${prog} ${PREFIX}/bin
${INSTALL_MAN} ${WRKDIST}/man/${prog}.1 ${PREFIX}/man/man1
.endfor
.include <bsd.port.mk>