annotate src/of-video.mk @ 6113:24e29dcb2e64

Qt5: Update to version 5.15.3. * src/qtbase.mk: Update version and checksum. * src/qtbase-2-gcc11.patch: Remove hunks from patch that have been applied upstream. * src/qtimageformats.mk, src/qtsvg.mk, src/qttools.mk, src/qttranslationse.mk: Update checksum.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 05 Mar 2022 10:59:53 +0100
parents bac4ef91ea7e
children a3243a9d9fc4
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 :=
5993
bac4ef91ea7e of-video: Update to version 2.0.2.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5971
diff changeset
6 $(PKG)_VERSION := 2.0.2
bac4ef91ea7e of-video: Update to version 2.0.2.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5971
diff changeset
7 $(PKG)_CHECKSUM := dc76e6ad2bb354d1d716804907a29ea1322d70e7
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