bca0c408e9
Mac OS X v10.5 (Leopard) introduced the concept of sparse-bundle disk images, where the data is stored as a collection of small, fixed-size band-files instead of as a single monolithic file. This allows for more efficient backups of the disk image, as only the changed bands need to be stored. One common source of sparse-bundles is Mac OS' backup utility, Time Machine, which stores the backup data within a sparse-bundle image on the chosen backup volume. This software package implements a FUSE virtual filesystem for read-only access to the sparse-bundle, as if it was a single monolithic image.
24 lines
667 B
Makefile
24 lines
667 B
Makefile
# $NetBSD: Makefile,v 1.1 2016/10/02 16:33:28 bouyer Exp $
|
|
#
|
|
|
|
DISTNAME= fuse-sparsebundlefs-20160928
|
|
CATEGORIES= filesystems
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=torarnv/}
|
|
GITHUB_PROJECT= sparsebundlefs
|
|
GITHUB_TAG= f3ccd20bd6393b05c9949810feb0e0b366b86348
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/torarnv/sparsebundlefs
|
|
COMMENT= FUSE filesystem for reading Mac OS sparse-bundle disk images.
|
|
LICENSE= 2-clause-bsd
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= gmake pkg-config
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sparsebundlefs ${DESTDIR}/${PREFIX}/bin/
|
|
|
|
.include "../../mk/fuse.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|