summaryrefslogtreecommitdiff
path: root/filesystems/fuse-cryptofs/Makefile
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2007-02-20 22:58:34 +0000
committerxtraeme <xtraeme>2007-02-20 22:58:34 +0000
commit8920a655f710c6eb5b5277d85922dfb93117766d (patch)
tree3c0e930e63a55ed728aeaa0cfa1f1477c2aa5da4 /filesystems/fuse-cryptofs/Makefile
parentff5569999ca0a3895dbbfd3c5245522089dc1e05 (diff)
downloadpkgsrc-8920a655f710c6eb5b5277d85922dfb93117766d.tar.gz
Initial import of fuse-cryptofs-0.6.0.
CryptoFS is a encrypted filesystem for Filesystem in Userspace (FUSE). CryptoFS will use a normal directory to store files encrypted. The mountpoint will contain the decrypted files. Every file stored in this mountpoint will be written encrypted (data and filename) to the directory that was mounted. If you unmount the directory the encrypted data can only be access by mounting the directory with the correct key again.
Diffstat (limited to 'filesystems/fuse-cryptofs/Makefile')
-rw-r--r--filesystems/fuse-cryptofs/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/filesystems/fuse-cryptofs/Makefile b/filesystems/fuse-cryptofs/Makefile
new file mode 100644
index 00000000000..871fd4f909f
--- /dev/null
+++ b/filesystems/fuse-cryptofs/Makefile
@@ -0,0 +1,27 @@
+# $NetBSD: Makefile,v 1.1.1.1 2007/02/20 22:58:34 xtraeme Exp $
+#
+
+DISTNAME= cryptofs-0.6.0
+PKGNAME= fuse-${DISTNAME}
+CATEGORIES= sysutils
+MASTER_SITES= http://reboot.animeirc.de/cryptofs/
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://reboot.animeirc.de/cryptofs/
+COMMENT= FUSE encrypted filesystem
+
+GNU_CONFIGURE= yes
+USE_TOOLS+= gmake pkg-config
+
+INSTALLATION_DIRS= share/doc/${PKGBASE} share/examples/${PKGBASE}
+
+post-install:
+ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/${PKGBASE}
+ ${INSTALL_DATA} ${WRKSRC}/cryptofs.conf \
+ ${PREFIX}/share/examples/${PKGBASE}
+
+.include "../../devel/glib2/buildlink3.mk"
+.include "../../security/libgcrypt/buildlink3.mk"
+.include "../../mk/fuse.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"