summaryrefslogtreecommitdiffstats
path: root/rules/host-opkg.make
blob: ffdff20d495802773054a6de3cc4bd7dc0b1f13c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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