annotate src/of-database.mk @ 4224:9ded338051db

of-database: update to 2.4.2 * src/of-database.mk: update version, checksum * build_packages.m: update database version * src/of-database-1-cross-fixes.patch: update patch for doc building
author John D
date Wed, 05 Oct 2016 15:39:03 -0400
parents 07a298959dc3
children bf58ac7af95d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3892
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
1 # This file is part of MXE.
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
2 # See index.html for further information.
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
3
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
4 PKG := of-database
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
5 $(PKG)_IGNORE :=
4224
9ded338051db of-database: update to 2.4.2
John D
parents: 4109
diff changeset
6 $(PKG)_VERSION := 2.4.2
9ded338051db of-database: update to 2.4.2
John D
parents: 4109
diff changeset
7 $(PKG)_CHECKSUM := cb9654c724012509e2d2e0ceb3ec2c67b20f1eb0
3892
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
8 $(PKG)_REMOTE_SUBDIR :=
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
9 $(PKG)_SUBDIR := database-$($(PKG)_VERSION)
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
10 $(PKG)_FILE := database-$($(PKG)_VERSION).tar.gz
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
11 $(PKG)_URL := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download'
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
12 $(PKG)_DEPS :=
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
13
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
14 define $(PKG)_UPDATE
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
15 $(WGET) -q -O- 'http://$(SOURCEFORGE_MIRROR)/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/' | \
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
16 $(SED) -n 's,.*title="database-\([0-9][^"]*\).tar.gz".*,\1,p' | \
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
17 head -1
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
18 endef
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
19
4224
9ded338051db of-database: update to 2.4.2
John D
parents: 4109
diff changeset
20 ifeq ($(MXE_SYSTEM)$(MXE_NATIVE_MINGW_BUILD),mingwno)
9ded338051db of-database: update to 2.4.2
John D
parents: 4109
diff changeset
21 define $(PKG)_BUILD
9ded338051db of-database: update to 2.4.2
John D
parents: 4109
diff changeset
22 $(OCTAVE_FORGE_PKG_BUILD,$(1),$(2),$(3),"BUILD_CXX=g++"))
9ded338051db of-database: update to 2.4.2
John D
parents: 4109
diff changeset
23 endef
9ded338051db of-database: update to 2.4.2
John D
parents: 4109
diff changeset
24 else
3892
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
25 define $(PKG)_BUILD
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
26 $(OCTAVE_FORGE_PKG_BUILD)
b42e8f913ddc of-database: added of package
John Donoghue
parents:
diff changeset
27 endef
4224
9ded338051db of-database: update to 2.4.2
John D
parents: 4109
diff changeset
28 endif