summaryrefslogtreecommitdiffstats
path: root/rules/fuse-zip.make
diff options
context:
space:
mode:
authorgrodriguez <guille.rodriguez@gmail.com>2015-01-13 17:04:39 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2015-01-14 11:19:02 +0100
commita66c716cc82e0c06fde96326bf24045be8ce738c (patch)
tree616dc4047a1ea88a947a950c98bf64a3acda40a0 /rules/fuse-zip.make
parent98ef23b0bc59c1ffdcb391cb576a9ca2fa2aac02 (diff)
downloadptxdist-a66c716cc82e0c06fde96326bf24045be8ce738c.tar.gz
ptxdist-a66c716cc82e0c06fde96326bf24045be8ce738c.tar.xz
New package: fuse-zip
Patch to fix a missing header. More info: http://code.google.com/p/fuse-zip/issues/detail?id=44 Signed-off-by: Guillermo Rodriguez <guille.rodriguez@gmail.com> [mol: replace patch with upstream commit] Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/fuse-zip.make')
-rw-r--r--rules/fuse-zip.make58
1 files changed, 58 insertions, 0 deletions
diff --git a/rules/fuse-zip.make b/rules/fuse-zip.make
new file mode 100644
index 000000000..482fe1840
--- /dev/null
+++ b/rules/fuse-zip.make
@@ -0,0 +1,58 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2014 by Guillermo Rodriguez <guille.rodriguez@gmail.com>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_FUSE_ZIP) += fuse-zip
+
+#
+# Paths and names
+#
+FUSE_ZIP_VERSION := 0.4.0
+FUSE_ZIP_MD5 := da2d85c5b28ccd153c928f8030e3f729
+FUSE_ZIP := fuse-zip-$(FUSE_ZIP_VERSION)
+FUSE_ZIP_SUFFIX := tar.gz
+FUSE_ZIP_URL := http://fuse-zip.googlecode.com/files/$(FUSE_ZIP).$(FUSE_ZIP_SUFFIX)
+FUSE_ZIP_SOURCE := $(SRCDIR)/$(FUSE_ZIP).$(FUSE_ZIP_SUFFIX)
+FUSE_ZIP_DIR := $(BUILDDIR)/$(FUSE_ZIP)
+FUSE_ZIP_LICENSE := LGPL
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+FUSE_ZIP_CONF_TOOL := NO
+FUSE_ZIP_MAKE_ENV := $(CROSS_ENV)
+
+# Makefile ignores DESTDIR
+FUSE_ZIP_INSTALL_OPT := 'INSTALLPREFIX=$(FUSE_ZIP_PKGDIR)/usr' install
+
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/fuse-zip.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, fuse-zip)
+ @$(call install_fixup, fuse-zip, PRIORITY,optional)
+ @$(call install_fixup, fuse-zip, SECTION,base)
+ @$(call install_fixup, fuse-zip, AUTHOR,"Guillermo Rodriguez <guille.rodriguez@gmail.com>")
+ @$(call install_fixup, fuse-zip, DESCRIPTION,missing)
+
+ @$(call install_copy, fuse-zip, 0, 0, 0755, -, /usr/bin/fuse-zip)
+
+ @$(call install_finish, fuse-zip)
+
+ @$(call touch)
+
+# vim: syntax=make