mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Lucas Sinn <lucas.sinn@wolfvision.net>
To: ptxdist@pengutronix.de
Cc: Lucas Sinn <lucas.sinn@wolfvision.net>
Subject: [ptxdist] [PATCH v3] glibmm: add new package
Date: Thu, 8 Aug 2024 18:02:07 +0200	[thread overview]
Message-ID: <20240808160207.2885965-1-lucas.sinn@wolfvision.net> (raw)
In-Reply-To: <016db821-bc16-4106-ab26-ac766a339fab.e0c24246-04d4-485f-8d5f-1cc8fbefd095.bba0f65a-d332-490e-b833-7630b4dabe80@emailsignatures365.codetwo.com>

Signed-off-by: Lucas Sinn <lucas.sinn@wolfvision.net>
---
Removed unnecessary usage meson cross file

 rules/glibmm.in   | 10 +++++++
 rules/glibmm.make | 70 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 80 insertions(+)
 create mode 100644 rules/glibmm.in
 create mode 100644 rules/glibmm.make

diff --git a/rules/glibmm.in b/rules/glibmm.in
new file mode 100644
index 000000000..5b6e4646e
--- /dev/null
+++ b/rules/glibmm.in
@@ -0,0 +1,10 @@
+## SECTION=multimedia_gtk
+
+config GLIBMM
+	tristate
+	select HOST_MESON
+	select GLIB
+	select LIBSIGCPP
+	prompt "glibmm"
+	help
+	  C++ wrapper for glib
diff --git a/rules/glibmm.make b/rules/glibmm.make
new file mode 100644
index 000000000..f45dec55c
--- /dev/null
+++ b/rules/glibmm.make
@@ -0,0 +1,70 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2024 by Lucas Sinn <lucas.sinn@wolfvision.net>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_GLIBMM) += glibmm
+
+#
+# Paths and names
+#
+GLIBMM_VERSION	:= 2.78.1
+GLIBMM_MD5	:= 52b93bf93de45e5a6b3c321bc832cd9c
+GLIBMM		:= glibmm-$(GLIBMM_VERSION)
+GLIBMM_SUFFIX	:= tar.xz
+GLIBMM_URL	:= $(call ptx/mirror, GNOME, glibmm/$(basename $(GLIBMM_VERSION))/$(GLIBMM).$(GLIBMM_SUFFIX))
+GLIBMM_SOURCE	:= $(SRCDIR)/$(GLIBMM).$(GLIBMM_SUFFIX)
+GLIBMM_DIR	:= $(BUILDDIR)/$(GLIBMM)
+GLIBMM_LICENSE	:= LGPL-2.1-only AND GPL-2.0-only
+GLIBMM_LICENSE_FILES	:= \
+	file://COPYING;md5=42dfffebc56fec7527aac53b7a89d1d8 \
+	file://COPYING.tools;md5=751419260aa954499f7abaabaa882bbe
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# meson
+#
+GLIBMM_CONF_TOOL  := meson
+GLIBMM_CONF_OPT   := \
+        $(CROSS_MESON_USR) \
+        -Dbuild-deprecated-api=false \
+        -Dbuild-documentation=false \
+        -Dbuild-examples=false \
+        -Ddebug-refcounting=false \
+        -Ddist-warnings=fatal \
+        -Dmaintainer-mode=false \
+        -Dmsvc14x-parallel-installable=false \
+        -Dwarnings=max \
+        \
+        --cross-file $(GLIB_MESON_CROSS_FILE)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/glibmm.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, glibmm)
+	@$(call install_fixup, glibmm,PRIORITY,optional)
+	@$(call install_fixup, glibmm,SECTION,base)
+	@$(call install_fixup, glibmm,AUTHOR,"Lucas Sinn <lucas.sinn@wolfvision.net>")
+	@$(call install_fixup, glibmm,DESCRIPTION,missing)
+
+	@$(call install_lib, glibmm, 0, 0, 0644, libglibmm-2.68)
+	@$(call install_lib, glibmm, 0, 0, 0644, libgiomm-2.68)
+
+	@$(call install_finish, glibmm)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.37.2


Lucas Sinn 
R&D Engineer

Wolfvision GmbH 
Oberes Ried 14 | 6833 Klaus | Austria 
Tel: +43 5523 52250 <tel:+43552352250> | Mail: lucas.sinn@wolfvision.net <mailto:lucas.sinn@wolfvision.net>

Website: wolfvision.com <www.wolfvision.com> 
Firmenbuch / Commercial Register: FN283521v Feldkirch/Austria




       reply	other threads:[~2024-08-08 17:24 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <016db821-bc16-4106-ab26-ac766a339fab.e0c24246-04d4-485f-8d5f-1cc8fbefd095.bba0f65a-d332-490e-b833-7630b4dabe80@emailsignatures365.codetwo.com>
2024-08-08 16:02 ` Lucas Sinn [this message]
2024-09-12 14:05   ` Michael Olbrich
2024-09-12 14:55     ` Lucas Sinn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240808160207.2885965-1-lucas.sinn@wolfvision.net \
    --to=lucas.sinn@wolfvision.net \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox