summaryrefslogtreecommitdiffstats
path: root/rules/host-opensc.make
blob: 8571c5750bff3e6baf1f521c0616bc2812bc5bed (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
48
49
50
51
52
53
54
55
56
57
# -*-makefile-*-
#
# Copyright (C) 2018 by Juergen Borleis <jbe@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_OPENSC) += host-opensc

#
# Paths and names
#
HOST_OPENSC_VERSION	:= 0.19.0
HOST_OPENSC_MD5		:= 40734b2343cf83c62c4c403f8a37475e
HOST_OPENSC		:= opensc-$(HOST_OPENSC_VERSION)
HOST_OPENSC_SUFFIX	:= tar.gz
HOST_OPENSC_URL		:= https://github.com/OpenSC/OpenSC/releases/download/0.19.0/$(HOST_OPENSC).$(HOST_OPENSC_SUFFIX)
HOST_OPENSC_SOURCE	:= $(SRCDIR)/$(HOST_OPENSC).$(HOST_OPENSC_SUFFIX)
HOST_OPENSC_DIR		:= $(HOST_BUILDDIR)/$(HOST_OPENSC)

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

#
# autoconf
#
HOST_OPENSC_CONF_TOOL	:= autoconf
HOST_OPENSC_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--sysconfdir=/etc/opensc \
	--disable-zlib \
	--disable-readline \
	--enable-openssl \
	--disable-openpace \
	--disable-openct \
	--disable-pcsc \
	--disable-cryptotokenkit \
	--enable-ctapi \
	--disable-minidriver \
	--enable-sm \
	--disable-man \
	--disable-doc \
	--disable-dnie-ui \
	--disable-notify \
	--enable-tests=no \
	--disable-static

HOST_OPENSC_CPPFLAGS := -Wno-implicit-fallthrough

# vim: syntax=make