# -*-makefile-*- # # Copyright (C) 2003 by Robert Schwebel # Pengutronix , Germany # 2007, 2009 by Marc Kleine-Budde # # 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 # PACKAGES-$(PTXCONF_EXPAT) += expat # # Paths and names # EXPAT_VERSION := 2.2.6 EXPAT_MD5 := ca047ae951b40020ac831c28859161b2 EXPAT := expat-$(EXPAT_VERSION) EXPAT_SUFFIX := tar.bz2 EXPAT_URL := $(call ptx/mirror, SF, expat/$(EXPAT).$(EXPAT_SUFFIX)) EXPAT_SOURCE := $(SRCDIR)/$(EXPAT).$(EXPAT_SUFFIX) EXPAT_DIR := $(BUILDDIR)/$(EXPAT) EXPAT_LICENSE := MIT # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- # # autoconf # EXPAT_CONF_TOOL := autoconf EXPAT_CONF_OPT := \ $(CROSS_AUTOCONF_USR) \ --disable-static \ --enable-xml-context \ --without-xmlwf \ --without-libbsd \ --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 ") @$(call install_fixup, expat,DESCRIPTION,missing) @$(call install_lib, expat, 0, 0, 0644, libexpat) @$(call install_finish, expat) @$(call touch) # vim: syntax=make