annotate src/libgdamm.mk @ 6215:d18a5545df0d release

build-gettext: Don't build emacs bindings. * src/build-gettext.mk: The `emacs` installed on the build system might be incompatible with the STL built by build-gcc. We probably don't need the emacs bindings for the `gettext` build tool anyway. So skip building those bindings.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 07 May 2022 12:01:10 +0200
parents 13be64f9f16d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2473
1804bb1dccfc packages libgda, libgdamm, mdbtools: minor fixes and disable update macro
Tony Theodore <tonyt@logyst.com>
parents: 2472
diff changeset
1 # This file is part of MXE.
1804bb1dccfc packages libgda, libgdamm, mdbtools: minor fixes and disable update macro
Tony Theodore <tonyt@logyst.com>
parents: 2472
diff changeset
2 # See index.html for further information.
2472
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
3
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
4 # libgdamm
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
5 PKG := libgdamm
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
6 $(PKG)_IGNORE :=
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3048
diff changeset
7 $(PKG)_VERSION := 4.1.3
2473
1804bb1dccfc packages libgda, libgdamm, mdbtools: minor fixes and disable update macro
Tony Theodore <tonyt@logyst.com>
parents: 2472
diff changeset
8 $(PKG)_CHECKSUM := f6126d7b46720e3ea4f3d49e03add2e52da233be
2472
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
9 $(PKG)_SUBDIR := libgdamm-$($(PKG)_VERSION)
2473
1804bb1dccfc packages libgda, libgdamm, mdbtools: minor fixes and disable update macro
Tony Theodore <tonyt@logyst.com>
parents: 2472
diff changeset
10 $(PKG)_FILE := libgdamm-$($(PKG)_VERSION).tar.xz
2472
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
11 $(PKG)_URL := http://ftp.gnome.org/pub/gnome/sources/libgdamm/$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
12 $(PKG)_DEPS := libgda glibmm
2472
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
13
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
14 define $(PKG)_UPDATE
2473
1804bb1dccfc packages libgda, libgdamm, mdbtools: minor fixes and disable update macro
Tony Theodore <tonyt@logyst.com>
parents: 2472
diff changeset
15 echo 'TODO: Updates for package libgdamm need to be fixed.' >&2;
1804bb1dccfc packages libgda, libgdamm, mdbtools: minor fixes and disable update macro
Tony Theodore <tonyt@logyst.com>
parents: 2472
diff changeset
16 echo $(libgdamm_VERSION)
2472
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
17 endef
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
18
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
19 define $(PKG)_BUILD
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
20 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2473
diff changeset
22 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
23 --prefix='$(HOST_PREFIX)' \
3031
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
24 CXX='$(MXE_CXX)' \
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
25 PKG_CONFIG='$(MXE_PKG_CONFIG)' \
2472
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
26 MAKE=$(MAKE)
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
27 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
785b3c5007ee new packages: libgda, libgdamm, mdbtools
Ryan Laboucane <wasabiwimp@gmail.com>
parents:
diff changeset
28 endef