2e1802466d
Gateway between FUSE and libarchive. Allows mounting of cpio, .tar.gz, .tar.bz2 archives. Reading and writing supported. Supports all formats libarchive supports.
29 lines
698 B
Makefile
29 lines
698 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2007/02/20 23:31:40 xtraeme Exp $
|
|
#
|
|
|
|
DISTNAME= archivemount-0.5.3
|
|
PKGNAME= fuse-${DISTNAME}
|
|
CATEGORIES= filesystems
|
|
MASTER_SITES= http://www.cybernoia.de/software/archivemount/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.cybernoia.de/software/archivemount/
|
|
COMMENT= FUSE gateway to libarchive
|
|
|
|
USE_TOOLS+= gmake
|
|
NO_CONFIGURE= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if exists(/usr/include/sys/statvfs.h)
|
|
CPPFLAGS+= -DHAVE_STATVFS
|
|
.endif
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/archivemount ${PREFIX}/bin
|
|
|
|
.include "../../archivers/libarchive/buildlink3.mk"
|
|
.include "../../mk/fuse.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|