summaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2023-04-08 12:54:07 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2023-04-08 15:09:47 +0200
commit000b8f78475f851773ee2fe0c89ad535c35f417b (patch)
tree4ba48be23666754f8dcc5260d8e955afe5034849 /rules
parent458ac411acda8aa821bc9b2dc4c39c57188c1859 (diff)
downloadDistroKit-000b8f78475f851773ee2fe0c89ad535c35f417b.tar.gz
DistroKit-000b8f78475f851773ee2fe0c89ad535c35f417b.tar.xz
expat: remove local recipie
The SF archive seems to be active again, so we can remove the local change to download from github. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Diffstat (limited to 'rules')
-rw-r--r--rules/expat.make66
1 files changed, 0 insertions, 66 deletions
diff --git a/rules/expat.make b/rules/expat.make
deleted file mode 100644
index bc6f865..0000000
--- a/rules/expat.make
+++ /dev/null
@@ -1,66 +0,0 @@
-# -*-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.4.9
-EXPAT_MD5 := 230455a6bb417c3c5d00806554ea34df
-EXPAT := expat-$(EXPAT_VERSION)
-EXPAT_SUFFIX := tar.bz2
-EXPAT_URL := https://github.com/libexpat/libexpat/releases/download/R_2_4_9/$(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-attr-info \
- --enable-xml-context \
- --without-xmlwf \
- --without-examples \
- --without-tests \
- --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 <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