summaryrefslogtreecommitdiffstats
path: root/rules/host-opkg.make
blob: 0264e7d3bf1af65d82263124e98cc64141d2f480 (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
45
46
# -*-makefile-*-
#
# Copyright (C) 2011 by George McCollister <george.mccollister@gmail.com>
#
# 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) \
	--disable-libopkg-api \
	--disable-static \
	--disable-pathfinder \
	--disable-xz \
	--disable-bzip2 \
	--disable-curl \
	--disable-sha256 \
	--disable-openssl \
	--disable-ssl-curl \
	--disable-gpg \
	--without-libsolv \
	--without-static-libopkg

# vim: syntax=make