From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 28 Feb 2022 13:10:20 +0100 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 1nOer6-00DDJW-1Q for lore@lore.pengutronix.de; Mon, 28 Feb 2022 13:10:20 +0100 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 1nOer4-0002us-Nh; Mon, 28 Feb 2022 13:10:18 +0100 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 1nOeq5-0001rr-SS; Mon, 28 Feb 2022 13:09:17 +0100 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1nOeq5-001oQw-Sf; Mon, 28 Feb 2022 13:09:17 +0100 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1nOeq4-00B0C2-Fo; Mon, 28 Feb 2022 13:09:16 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Mon, 28 Feb 2022 13:09:16 +0100 Message-Id: <20220228120916.2621500-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220218160838.759601-2-p.zabel@pengutronix.de> References: <20220218160838.759601-2-p.zabel@pengutronix.de> MIME-Version: 1.0 Subject: Re: [ptxdist] [APPLIED] aml: new package 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: Philipp Zabel Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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 Thanks, applied as a4880605adc45cc0d8c1c8659ffd2640f0c94cf9. Michael [sent from post-receive hook] On Mon, 28 Feb 2022 13:09:16 +0100, Philipp Zabel wrote: > Signed-off-by: Philipp Zabel > Message-Id: <20220218160838.759601-2-p.zabel@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/aml.in b/rules/aml.in > new file mode 100644 > index 000000000000..897028c61f72 > --- /dev/null > +++ b/rules/aml.in > @@ -0,0 +1,8 @@ > +## SECTION=system_libraries > + > +config AML > + tristate > + select HOST_MESON > + prompt "aml" > + help > + Andri's Main Loop > diff --git a/rules/aml.make b/rules/aml.make > new file mode 100644 > index 000000000000..f083fe29a5c3 > --- /dev/null > +++ b/rules/aml.make > @@ -0,0 +1,57 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2020 by Marian Cichy > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +PACKAGES-$(PTXCONF_AML) += aml > + > +# > +# Paths and names > +# > +AML_VERSION := 0.2.1 > +AML_MD5 := 8416dc2bdcd4c8c56d5e246468a30c2d > +AML := aml-$(AML_VERSION) > +AML_SUFFIX := tar.gz > +AML_URL := https://github.com/any1/aml/archive/refs/tags/v$(AML_VERSION).$(AML_SUFFIX) > +AML_SOURCE := $(SRCDIR)/$(AML).$(AML_SUFFIX) > +AML_DIR := $(BUILDDIR)/$(AML) > +AML_LICENSE := ISC > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +# > +# meson > +# > +AML_CONF_TOOL := meson > +AML_CONF_OPT := \ > + $(CROSS_MESON_USR) \ > + -Dexamples=false > + > +# ---------------------------------------------------------------------------- > +# Target-Install > +# ---------------------------------------------------------------------------- > + > +$(STATEDIR)/aml.targetinstall: > + @$(call targetinfo) > + > + @$(call install_init, aml) > + @$(call install_fixup, aml,PRIORITY,optional) > + @$(call install_fixup, aml,SECTION,base) > + @$(call install_fixup, aml,AUTHOR,"Marian Cichy ") > + @$(call install_fixup, aml,DESCRIPTION,missing) > + > + @$(call install_lib, aml, 0, 0, 0644, libaml) > + > + @$(call install_finish, aml) > + > + @$(call touch) > + > +# vim: syntax=make _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de