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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# -*-makefile-*-
#
# Copyright (C) 2003 by Robert Schwebel <r.schwebel@pengutronix.de>
# Pengutronix <info@pengutronix.de>, Germany
# 2007, 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#
#
# We provide this package
#
PACKAGES-$(PTXCONF_EXPAT) += expat
#
# Paths and names
#
EXPAT_VERSION := 2.6.3
EXPAT_MD5 := c70040a3f2743d9645cb029d3c9a7c89
EXPAT := expat-$(EXPAT_VERSION)
EXPAT_SUFFIX := tar.bz2
EXPAT_RELEASE := R_$(subst .,_,$(EXPAT_VERSION))
EXPAT_URL := https://github.com/libexpat/libexpat/releases/download/$(EXPAT_RELEASE)/$(EXPAT).$(EXPAT_SUFFIX)
EXPAT_SOURCE := $(SRCDIR)/$(EXPAT).$(EXPAT_SUFFIX)
EXPAT_DIR := $(BUILDDIR)/$(EXPAT)
EXPAT_LICENSE := MIT
EXPAT_LICENSE_FILES := \
file://COPYING;md5=7b3b078238d0901d3b339289117cb7fb
# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------
#
# autoconf
#
EXPAT_CONF_TOOL := autoconf
EXPAT_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
--disable-static \
--enable-xml-attr-info \
--enable-xml-context \
--without-xmlwf \
--without-examples \
--without-tests \
--without-libbsd \
--with-getrandom \
--without-sys-getrandom \
--without-docbook
# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------
$(STATEDIR)/expat.targetinstall:
@$(call targetinfo)
@$(call install_init, expat)
@$(call install_fixup, expat,PRIORITY,optional)
@$(call install_fixup, expat,SECTION,base)
@$(call install_fixup, expat,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
@$(call install_fixup, expat,DESCRIPTION,missing)
@$(call install_lib, expat, 0, 0, 0644, libexpat)
@$(call install_finish, expat)
@$(call touch)
# vim: syntax=make
|