summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rules/host-cdrkit.in10
-rw-r--r--rules/host-cdrkit.make34
2 files changed, 44 insertions, 0 deletions
diff --git a/rules/host-cdrkit.in b/rules/host-cdrkit.in
new file mode 100644
index 000000000..d69d084cf
--- /dev/null
+++ b/rules/host-cdrkit.in
@@ -0,0 +1,10 @@
+## SECTION=hosttools_noprompt
+
+config HOST_CDRKIT
+ tristate
+ select HOST_CMAKE
+ select HOST_LIBCAP
+ select HOST_LIBBZ2
+ prompt "cdrkit"
+ help
+ FIXME
diff --git a/rules/host-cdrkit.make b/rules/host-cdrkit.make
new file mode 100644
index 000000000..ca2b02ba0
--- /dev/null
+++ b/rules/host-cdrkit.make
@@ -0,0 +1,34 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2010 by Marc Kleine-Budde <mkl@pengutronix.de>
+#
+# 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
+#
+HOST_PACKAGES-$(PTXCONF_HOST_CDRKIT) += host-cdrkit
+
+#
+# Paths and names
+#
+HOST_CDRKIT_VERSION := 1.1.10
+HOST_CDRKIT := cdrkit-$(HOST_CDRKIT_VERSION)
+HOST_CDRKIT_SUFFIX := tar.gz
+HOST_CDRKIT_URL := http://cdrkit.org/releases/$(HOST_CDRKIT).$(HOST_CDRKIT_SUFFIX)
+HOST_CDRKIT_SOURCE := $(SRCDIR)/$(HOST_CDRKIT).$(HOST_CDRKIT_SUFFIX)
+HOST_CDRKIT_DIR := $(HOST_BUILDDIR)/$(HOST_CDRKIT)
+
+# ----------------------------------------------------------------------------
+# Get
+# ----------------------------------------------------------------------------
+
+$(HOST_CDRKIT_SOURCE):
+ @$(call targetinfo)
+ @$(call get, HOST_CDRKIT)
+
+# vim: syntax=make