summaryrefslogtreecommitdiff
path: root/filesystems/fuse-httpfs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'filesystems/fuse-httpfs/Makefile')
-rw-r--r--filesystems/fuse-httpfs/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/filesystems/fuse-httpfs/Makefile b/filesystems/fuse-httpfs/Makefile
new file mode 100644
index 00000000000..2ca0055ea4e
--- /dev/null
+++ b/filesystems/fuse-httpfs/Makefile
@@ -0,0 +1,33 @@
+# $NetBSD: Makefile,v 1.1.1.1 2007/02/20 23:44:06 xtraeme Exp $
+#
+
+DISTNAME= httpfs_with_static_binaries_${DIST_VER}
+PKGNAME= fuse-httpfs-${DIST_VER}
+CATEGORIES= sysutils
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=httpfs/}
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://httpfs.sourceforge.net/
+COMMENT= FUSE HTTP filesystem
+
+DIST_VER= 2.06.08.26
+
+NO_CONFIGURE= yes
+WRKSRC= ${WRKDIR}
+
+LIBS+= -lfuse
+
+INSTALLATION_DIRS= bin
+
+post-extract:
+ ${RM} ${WRKSRC}/httpfs
+
+do-build:
+ ${CC} ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} ${LIBS} \
+ ${WRKSRC}/httpfs.c -o ${WRKSRC}/httpfs
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/httpfs ${PREFIX}/bin
+
+.include "../../mk/fuse.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"