From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 07 Sep 2022 15:22:03 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1oVv0D-009dJ4-PP for lore@lore.pengutronix.de; Wed, 07 Sep 2022 15:22:03 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1oVv0E-0006TA-Q5; Wed, 07 Sep 2022 15:22:02 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oVuzg-0006Ip-P1; Wed, 07 Sep 2022 15:21:28 +0200 Received: from [2a0a:edc0:0:1101:1d::ac] (helo=dude04.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1oVuze-004Rwc-70; Wed, 07 Sep 2022 15:21:28 +0200 Received: from ore by dude04.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1oVuzf-009qBK-2X; Wed, 07 Sep 2022 15:21:27 +0200 From: Oleksij Rempel To: ptxdist@pengutronix.de Date: Wed, 7 Sep 2022 15:21:22 +0200 Message-Id: <20220907132125.2345487-2-o.rempel@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220907132125.2345487-1-o.rempel@pengutronix.de> References: <20220907132125.2345487-1-o.rempel@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH v1 2/5] add host libunsitring X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Oleksij Rempel Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false This package is needed by guile tools Signed-off-by: Oleksij Rempel --- rules/host-libunistring.in | 4 ++++ rules/host-libunistring.make | 38 ++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 rules/host-libunistring.in create mode 100644 rules/host-libunistring.make diff --git a/rules/host-libunistring.in b/rules/host-libunistring.in new file mode 100644 index 000000000..b501a8d12 --- /dev/null +++ b/rules/host-libunistring.in @@ -0,0 +1,4 @@ +## SECTION=hosttools_noprompt_ptx + +config HOST_LIBUNISTRING + bool diff --git a/rules/host-libunistring.make b/rules/host-libunistring.make new file mode 100644 index 000000000..21b14a57b --- /dev/null +++ b/rules/host-libunistring.make @@ -0,0 +1,38 @@ +# -*-makefile-*- +# +# Copyright (C) 2022 by Marc Kleine-Budde +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +# +# We provide this package +# +HOST_PACKAGES-$(PTXCONF_HOST_LIBUNISTRING) += host-libunistring + +# +# Paths and names +# +HOST_LIBUNISTRING_VERSION := 1.0 +HOST_LIBUNISTRING_MD5 := 88752c7859212f9c7a0f6cbf7a273535 +HOST_LIBUNISTRING := libunistring-$(HOST_LIBUNISTRING_VERSION) +HOST_LIBUNISTRING_SUFFIX := tar.xz +HOST_LIBUNISTRING_URL := https://ftp.gnu.org/gnu/libunistring/$(HOST_LIBUNISTRING).$(HOST_LIBUNISTRING_SUFFIX) +HOST_LIBUNISTRING_SOURCE := $(SRCDIR)/$(HOST_LIBUNISTRING).$(HOST_LIBUNISTRING_SUFFIX) +HOST_LIBUNISTRING_DIR := $(HOST_BUILDDIR)/$(HOST_LIBUNISTRING) +HOST_LIBUNISTRING_LICENSE := GPLv3 + +# ---------------------------------------------------------------------------- +# Prepare +# ---------------------------------------------------------------------------- + +# +# autoconf +# +HOST_LIBUNISTRING_CONF_TOOL := autoconf +HOST_LIBUNISTRING_CONF_OPT := \ + $(HOST_AUTOCONF) +HOST_LIBUNISTRING_MAKE_OPT := V=1 + +# vim: syntax=make -- 2.30.2