annotate src/of-communications.mk @ 5256:aad0cc165a27

of-communications: update to v1.2.2 * dist-files.mk: remove refs to patches * src/of-communications.mk: update version, checksum * src/of-communications-1-fixes.patch, src/of-communications-2-fixes.patch, src/of-communications-3-fixes.patch, src/of-communications-4-fixes.patch, src/of-communications-5-fixes.patch, src/of-communications-6-deprecated.patch : removed files
author John Donoghue <john.donoghue@ieee.org>
date Mon, 06 Jan 2020 06:19:36 -0500
parents 7d1e45c2f175
children 98bcc037fad7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2958
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := of-communications
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
5256
aad0cc165a27 of-communications: update to v1.2.2
John Donoghue <john.donoghue@ieee.org>
parents: 4543
diff changeset
6 $(PKG)_VERSION := 1.2.2
aad0cc165a27 of-communications: update to v1.2.2
John Donoghue <john.donoghue@ieee.org>
parents: 4543
diff changeset
7 $(PKG)_CHECKSUM := 90ebf5cd84ba8df1f8c14241598d0baedc39f371
2958
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_REMOTE_SUBDIR :=
3873
58aa10af640e of-communications: update to v1.2.1
John Donoghue
parents: 3853
diff changeset
9 $(PKG)_SUBDIR := communications-$($(PKG)_VERSION)
2958
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_FILE := communications-$($(PKG)_VERSION).tar.gz
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_URL := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download'
3345
290e049823c9 Octave-forge pks: support file listing and pre-compilation (for MSVC).
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3012
diff changeset
12 $(PKG)_DEPS := of-signal
2958
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13
4449
1933a9113e65 of-*: add octave as a dependancy to the of packages is binary enable is set (Bug #46235)
John D
parents: 4020
diff changeset
14 ifeq ($(ENABLE_BINARY_PACKAGES),yes)
1933a9113e65 of-*: add octave as a dependancy to the of packages is binary enable is set (Bug #46235)
John D
parents: 4020
diff changeset
15 $(PKG)_DEPS += $(OCTAVE_TARGET)
1933a9113e65 of-*: add octave as a dependancy to the of packages is binary enable is set (Bug #46235)
John D
parents: 4020
diff changeset
16 endif
1933a9113e65 of-*: add octave as a dependancy to the of packages is binary enable is set (Bug #46235)
John D
parents: 4020
diff changeset
17
3873
58aa10af640e of-communications: update to v1.2.1
John Donoghue
parents: 3853
diff changeset
18 $(PKG)_OPTIONS := comm_cv_hdf5_cppflags='-I$(HOST_INCDIR)' comm_cv_hdf5_ldflags='-L$(HOST_LIBDIR)' comm_cv_hdf5_libs=-lhdf5
58aa10af640e of-communications: update to v1.2.1
John Donoghue
parents: 3853
diff changeset
19
2958
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 define $(PKG)_UPDATE
4543
7d1e45c2f175 update: more PKG_UPDATE updates, added update-octaveforge target
John D
parents: 4449
diff changeset
21 $(OCTAVE_FORGE_PKG_UPDATE)
2958
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 endef
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 define $(PKG)_BUILD
4020
46c6ddb14417 of-communications: add patch to compile wih dev octave (Bug #45856)
John Donoghue
parents: 3873
diff changeset
25 cd $(1)/src && autoconf
3873
58aa10af640e of-communications: update to v1.2.1
John Donoghue
parents: 3853
diff changeset
26 $(call OCTAVE_FORGE_PKG_BUILD,$(1),$(2),$(3),$($(PKG)_OPTIONS))
2958
04791633efbc Octave Forge package sources and build script
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 endef