summaryrefslogtreecommitdiffstats
path: root/rules/host-opkg.make
diff options
context:
space:
mode:
authorGeorge McCollister <george.mccollister@gmail.com>2011-05-19 16:03:56 -0500
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-05-20 19:40:29 +0200
commit0248656556dffea39f3c405aaa87c1554505ae9e (patch)
tree12ce3f90fbde4de8c58e69ec7c031aa4f5e9cb6a /rules/host-opkg.make
parent2111af720445bc5182e8d950bd3f5d07a6eb2041 (diff)
downloadptxdist-0248656556dffea39f3c405aaa87c1554505ae9e.tar.gz
ptxdist-0248656556dffea39f3c405aaa87c1554505ae9e.tar.xz
host-opkg: Added new host package.
I have added host-opkg so opkg-cl is available for use in building an ipk repository. Signed-off-by: George McCollister <george.mccollister@gmail.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/host-opkg.make')
-rw-r--r--rules/host-opkg.make44
1 files changed, 44 insertions, 0 deletions
diff --git a/rules/host-opkg.make b/rules/host-opkg.make
new file mode 100644
index 000000000..ffdff20d4
--- /dev/null
+++ b/rules/host-opkg.make
@@ -0,0 +1,44 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2011 by George McCollister <george.mccollister@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
+#
+HOST_PACKAGES-$(PTXCONF_HOST_OPKG) += host-opkg
+
+#
+# Paths and names
+#
+
+HOST_OPKG = $(OPKG)
+HOST_OPKG_DIR = $(HOST_BUILDDIR)/$(HOST_OPKG)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+HOST_OPKG_ENV := $(HOST_ENV)
+
+#
+# autoconf
+#
+HOST_OPKG_CONF_TOOL := autoconf
+HOST_OPKG_CONF_OPT := \
+ $(HOST_AUTOCONF) \
+ --enable-shave \
+ --with-opkglockfile=/lock \
+ --disable-pathfinder \
+ --disable-curl \
+ --disable-sha256 \
+ --disable-openssl \
+ --disable-ssl-curl \
+ --disable-gpg
+
+# vim: syntax=make