summaryrefslogtreecommitdiffstats
path: root/rules/host-libarchive.make
blob: 1dd36730b37c180a392be5a3e1ce07950d2c7a6c (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
47
# -*-makefile-*-
#
# Copyright (C) 2015 by Michael Olbrich <m.olbrich@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_LIBARCHIVE) += host-libarchive

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# autoconf
#
HOST_LIBARCHIVE_CONF_TOOL	:= autoconf
HOST_LIBARCHIVE_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--disable-static \
	--disable-bsdtar \
	--disable-bsdcat \
	--disable-bsdcpio \
	--disable-rpath \
	--enable-posix-regex-lib=libc \
	--disable-xattr \
	--disable-acl \
	--with-zlib \
	--without-bz2lib \
	--without-iconv \
	--without-lz4 \
	--without-lzma \
	--without-lzo2 \
	--without-cng \
	--without-nettle \
	--without-openssl \
	--without-xml2 \
	--without-expat


# vim: syntax=make