summaryrefslogtreecommitdiff
path: root/filesystems/fuse-sparsebundlefs/Makefile
diff options
context:
space:
mode:
authorbouyer <bouyer>2016-10-02 16:33:28 +0000
committerbouyer <bouyer>2016-10-02 16:33:28 +0000
commit354e514341600aceb89b89a1d4f2385c048642f9 (patch)
tree79251d79240e94799a63186def5c70c730cf3aff /filesystems/fuse-sparsebundlefs/Makefile
parent75cb59efe462c62426c3854e76049a4321873d50 (diff)
downloadpkgsrc-354e514341600aceb89b89a1d4f2385c048642f9.tar.gz
Add fuse-sparsebundlefs version 20160928:
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.
Diffstat (limited to 'filesystems/fuse-sparsebundlefs/Makefile')
-rw-r--r--filesystems/fuse-sparsebundlefs/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/filesystems/fuse-sparsebundlefs/Makefile b/filesystems/fuse-sparsebundlefs/Makefile
new file mode 100644
index 00000000000..5b9c46aef0c
--- /dev/null
+++ b/filesystems/fuse-sparsebundlefs/Makefile
@@ -0,0 +1,24 @@
+# $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"