annotate src/librtmp.mk @ 7220:d3087afece14 default tip @

* src/gdal.mk, src/xcb.mk: disable doxygen docs
author John Donoghue <john.donoghue@ieee.org>
date Wed, 22 May 2024 10:31:54 -0400
parents 13be64f9f16d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2584
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
1 # This file is part of MXE.
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
2 # See index.html for further information.
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
3
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
4 PKG := librtmp
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
5 $(PKG)_IGNORE :=
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3048
diff changeset
6 $(PKG)_VERSION := 2.4
2584
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
7 $(PKG)_CHECKSUM := b65ce7708ae79adb51d1f43dd0b6d987076d7c42
2586
5136e4e6e487 package librtmp: update to v2.4 and beyond
Mark Brand <mabrand@mabrand.nl>
parents: 2585
diff changeset
8 $(PKG)_SUBDIR := rtmpdump-2.3
5136e4e6e487 package librtmp: update to v2.4 and beyond
Mark Brand <mabrand@mabrand.nl>
parents: 2585
diff changeset
9 $(PKG)_FILE := rtmpdump-2.3.tgz
2584
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
10 $(PKG)_URL := http://rtmpdump.mplayerhq.hu/download/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
11 $(PKG)_DEPS := gnutls
2584
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
12
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
13 define $(PKG)_UPDATE
2607
e2cb207e6119 package librtmp: disable updates
Mark Brand <mabrand@mabrand.nl>
parents: 2588
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package librtmp.' >&2;
e2cb207e6119 package librtmp: disable updates
Mark Brand <mabrand@mabrand.nl>
parents: 2588
diff changeset
15 echo $(librtmp_VERSION)
2584
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
16 endef
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
17
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
18 define $(PKG)_BUILD
2633
05c6238601ae package librtmp: portability macro for make
Mark Brand <mabrand@mabrand.nl>
parents: 2607
diff changeset
19 $(MAKE) -C '$(1)' \
3031
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
20 CROSS_COMPILE='$(MXE_TOOL_PREFIX)' \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2633
diff changeset
21 prefix='$(HOST_PREFIX)' \
2585
42c0a3b89b06 package librtmp: style improvements
Mark Brand <mabrand@mabrand.nl>
parents: 2584
diff changeset
22 SYS=mingw \
2587
0c9993232932 package librtmp: use gnutls
Mark Brand <mabrand@mabrand.nl>
parents: 2586
diff changeset
23 CRYPTO=GNUTLS \
2588
aca400461f6d package librtmp: disable shared
Mark Brand <mabrand@mabrand.nl>
parents: 2587
diff changeset
24 SHARED=no \
2585
42c0a3b89b06 package librtmp: style improvements
Mark Brand <mabrand@mabrand.nl>
parents: 2584
diff changeset
25 -j '$(JOBS)' install
2584
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
26 endef