From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 03 Feb 2025 09:21:37 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1teri5-007uBw-0L for lore@lore.pengutronix.de; Mon, 03 Feb 2025 09:21:37 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1teri5-0002Mx-Hs; Mon, 03 Feb 2025 09:21:37 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1terhp-0002Mc-O8 for ptxdist@pengutronix.de; Mon, 03 Feb 2025 09:21:21 +0100 Received: from lupine.office.stw.pengutronix.de ([2a0a:edc0:0:900:1d::4e] helo=lupine) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1terhp-003GFA-1m for ptxdist@pengutronix.de; Mon, 03 Feb 2025 09:21:21 +0100 Received: from pza by lupine with local (Exim 4.96) (envelope-from ) id 1terhp-00018a-1Z for ptxdist@pengutronix.de; Mon, 03 Feb 2025 09:21:21 +0100 Message-ID: <8d419f12e5408b0ccfcac0ec687c7499470c0a48.camel@pengutronix.de> From: Philipp Zabel To: ptxdist@pengutronix.de Date: Mon, 03 Feb 2025 09:21:21 +0100 In-Reply-To: <20250128124058.1620435-1-p.zabel@pengutronix.de> References: <20250128124058.1620435-1-p.zabel@pengutronix.de> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4-2 MIME-Version: 1.0 Subject: Re: [ptxdist] [PATCH 1/3] assimp: 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 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.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false On Di, 2025-01-28 at 13:40 +0100, Philipp Zabel wrote: > The Open Asset Import Library is a dependency of vkmark. >=20 > Only the .3ds and .ply format importers used by vkmark are enabled > and all exporters are disabled for now, reducing the library size > from 11 MiB to 1.5 MiB on x86_64. >=20 > Signed-off-by: Philipp Zabel > --- > rules/assimp.in | 10 ++++++ > rules/assimp.make | 86 +++++++++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 96 insertions(+) > create mode 100644 rules/assimp.in > create mode 100644 rules/assimp.make >=20 > diff --git a/rules/assimp.in b/rules/assimp.in > new file mode 100644 > index 000000000000..686cc18051f8 > --- /dev/null > +++ b/rules/assimp.in > @@ -0,0 +1,10 @@ > +## SECTION=3Dmultimedia_libs > + > +config ASSIMP > + tristate > + prompt "assimp" > + select HOST_CMAKE > + select ZLIB > + help > + Open Asset Import Library (assimp) to load various 3d file formats > + into a shared, in-memory format. > diff --git a/rules/assimp.make b/rules/assimp.make > new file mode 100644 > index 000000000000..c1764dfdb09f > --- /dev/null > +++ b/rules/assimp.make > @@ -0,0 +1,86 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2020 by Philipp Zabel > +# > +# For further information about the PTXdist project and license conditio= ns > +# see the README file. > +# > + > +# > +# We provide this package > +# > +PACKAGES-$(PTXCONF_ASSIMP) +=3D assimp > + > +# > +# Paths and names > +# > +ASSIMP_VERSION :=3D 5.4.3 > +ASSIMP_MD5 :=3D fd64a9a57a3d81940ba7fc4a3a946502 > +ASSIMP :=3D assimp-$(ASSIMP_VERSION) > +ASSIMP_SUFFIX :=3D tar.gz > +ASSIMP_URL :=3D https://github.com/assimp/assimp/archive/refs/tags/v$(AS= SIMP_VERSION).$(ASSIMP_SUFFIX) > +ASSIMP_SOURCE :=3D $(SRCDIR)/$(ASSIMP).$(ASSIMP_SUFFIX) > +ASSIMP_DIR :=3D $(BUILDDIR)/$(ASSIMP) > +ASSIMP_LICENSE :=3D Open Asset Import Library (assimp) > +GLM_LICENSE_FILES :=3D file://LICENSE;md5=3D462e4b97f73ef12f8171c3c546ce= 4e8d copy&paste error, will fix in v2.