1bae556a1c
libzip was updated to 1.3.0 in r450774, and its SOVERSION went from .4 to .5 after the removal of zip_archive_set_tempdir(). All dependent ports continue to build fine without that symbol. PR: 222638
35 lines
861 B
Makefile
35 lines
861 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= fuse-zip
|
|
PORTVERSION= 0.4.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://bitbucket.org/agalanin/fuse-zip/downloads/
|
|
|
|
MAINTAINER= olevole@olevole.ru
|
|
COMMENT= FUSE filesystem to mount ZIP archives with write support
|
|
|
|
LICENSE= LGPL3
|
|
|
|
LIB_DEPENDS= libzip.so:archivers/libzip
|
|
BUILD_DEPENDS= libzip>=0.11.1:archivers/libzip
|
|
|
|
USES= gmake fuse pkgconfig
|
|
|
|
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
|
|
PORTDOCS= README changelog
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|make|$${MAKE}|' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|