annotate src/of-video.mk @ 5073:9ac443dd92ad

cmake: update to v3.14.4 * src/build-cmake.mk: update version, checksum * src/cmake.mk: update version, checksum
author John Donoghue
date Fri, 17 May 2019 10:09:55 -0400
parents 7d1e45c2f175
children 9320395c7286
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4073
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
1 # This file is part of MXE.
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
2 # See index.html for further information.
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
3
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
4 PKG := of-video
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
5 $(PKG)_IGNORE :=
4390
a79cf7dd8623 of-video: update to 1.2.4
John D
parents: 4202
diff changeset
6 $(PKG)_VERSION := 1.2.4
a79cf7dd8623 of-video: update to 1.2.4
John D
parents: 4202
diff changeset
7 $(PKG)_CHECKSUM := b1d00052c7ea6633ba24ad21e851cda18159d4f1
4073
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
8 $(PKG)_REMOTE_SUBDIR :=
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
9 $(PKG)_SUBDIR := video-$($(PKG)_VERSION)
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
10 $(PKG)_FILE := $($(PKG)_SUBDIR).tar.gz
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
11 $(PKG)_URL := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download'
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
12 $(PKG)_DEPS := ffmpeg
03ed5810b068 of-video: add video package
John Donoghue
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: 4390
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: 4390
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: 4390
diff changeset
16 endif
4073
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
17
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
18 ifeq ($(MXE_SYSTEM),mingw)
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
19 $(PKG)_OPTIONS := ac_cv_func_realloc_0_nonnull=yes ac_cv_func_malloc_0_nonnull=yes
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
20 else
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
21 $(PKG)_OPTIONS :=
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
22 endif
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
23
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
24 define $(PKG)_UPDATE
4543
7d1e45c2f175 update: more PKG_UPDATE updates, added update-octaveforge target
John D
parents: 4449
diff changeset
25 $(OCTAVE_FORGE_PKG_UPDATE)
4073
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
26 endef
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
27
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
28 define $(PKG)_BUILD
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
29 $(call OCTAVE_FORGE_PKG_BUILD,$(1),$(2),$(3),$($(PKG)_OPTIONS))
03ed5810b068 of-video: add video package
John Donoghue
parents:
diff changeset
30 endef