1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Add fuse-zip, a FUSE file system to navigate, extract, create, and modify ZIP

archives.

PR:	ports/159242
This commit is contained in:
Alexey Dokuchaev 2013-01-28 11:03:50 +00:00
parent 1d99358b22
commit 1cc04ea31d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=311113
4 changed files with 50 additions and 0 deletions

View File

@ -296,6 +296,7 @@
SUBDIR += fusefs-unionfs
SUBDIR += fusefs-wdfs
SUBDIR += fusefs-wikipediafs
SUBDIR += fusefs-zip
SUBDIR += fvcool
SUBDIR += gaffitter
SUBDIR += gai-leds

View File

@ -0,0 +1,41 @@
# $FreeBSD$
PORTNAME= fuse-zip
PORTVERSION= 0.2.13
CATEGORIES= sysutils
MASTER_SITES= GOOGLE_CODE
MAINTAINER= olevole@olevole.ru
COMMENT= FUSE filesystem to mount ZIP archives with write support
LICENSE= LGPL3
LIB_DEPENDS= zip:${PORTSDIR}/archivers/libzip
USE_GMAKE= yes
USE_PKGCONFIG= build
USE_FUSE= yes
PLIST_FILES= bin/${PORTNAME}
MAN1= ${PORTNAME}.1
PORTDOCS= README TODO changelog
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
do-build:
(cd ${WRKSRC} && ${GMAKE} -C lib && \
${GMAKE} CXXFLAGS="-I${LOCALBASE}/include")
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (fuse-zip-0.2.13.tar.gz) = e41c0746e3419db8f519fad7e819ef72ddb48ffca2de52773f038016aacd9804
SIZE (fuse-zip-0.2.13.tar.gz) = 185431

View File

@ -0,0 +1,6 @@
fuse-zip is a FUSE file system to navigate, extract, create and modify ZIP
archives based on libzip, implemented in C++. With fuse-zip, you can work
with ZIP archives as real directories. Unlike KIO or Gnome VFS, it can be
be used in any application without modifications.
WWW: http://code.google.com/p/fuse-zip/