annotate src/librtmp.mk @ 3293:cf6f40cededb

Support file list generation in packages. For the following modules: - arpack - blas - build-autoconf - build-automake - build-cmake - build-gperf - build-libtool - build-msvctools - build-pkg-config - build-texinfo - bzip2 - curl - dbus - expat - fftw - fltk - fontconfig - freetype - gettext - glpk - gmp - gnuplot - gnutls - graphicsmagick - hdf5 - jasper - jpeg - lapack - lcms - libgcrypt - libgpg_error - libiconv - libidn - libpng - libssh2 - libxml2 - ncurses - nettle - openssl - pcre - pstoedit - zlib - qhull - qrupdate - qscintilla - qt - readline - suitesparse - texinfo - tiff
author Michael Goffioul <michael.goffioul@gmail.com>
date Sat, 09 Nov 2013 23:28:04 -0500
parents 5ef49fb3299d
children 13be64f9f16d
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 :=
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
6 $(PKG)_CHECKSUM := b65ce7708ae79adb51d1f43dd0b6d987076d7c42
2586
5136e4e6e487 package librtmp: update to v2.4 and beyond
Mark Brand <mabrand@mabrand.nl>
parents: 2585
diff changeset
7 $(PKG)_SUBDIR := rtmpdump-2.3
5136e4e6e487 package librtmp: update to v2.4 and beyond
Mark Brand <mabrand@mabrand.nl>
parents: 2585
diff changeset
8 $(PKG)_FILE := rtmpdump-2.3.tgz
2584
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
9 $(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
10 $(PKG)_DEPS := gnutls
2584
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
11
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
12 define $(PKG)_UPDATE
2607
e2cb207e6119 package librtmp: disable updates
Mark Brand <mabrand@mabrand.nl>
parents: 2588
diff changeset
13 echo 'Warning: Updates are temporarily disabled for package librtmp.' >&2;
e2cb207e6119 package librtmp: disable updates
Mark Brand <mabrand@mabrand.nl>
parents: 2588
diff changeset
14 echo $(librtmp_VERSION)
2584
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
15 endef
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
16
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
17 define $(PKG)_BUILD
2633
05c6238601ae package librtmp: portability macro for make
Mark Brand <mabrand@mabrand.nl>
parents: 2607
diff changeset
18 $(MAKE) -C '$(1)' \
3031
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
19 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
20 prefix='$(HOST_PREFIX)' \
2585
42c0a3b89b06 package librtmp: style improvements
Mark Brand <mabrand@mabrand.nl>
parents: 2584
diff changeset
21 SYS=mingw \
2587
0c9993232932 package librtmp: use gnutls
Mark Brand <mabrand@mabrand.nl>
parents: 2586
diff changeset
22 CRYPTO=GNUTLS \
2588
aca400461f6d package librtmp: disable shared
Mark Brand <mabrand@mabrand.nl>
parents: 2587
diff changeset
23 SHARED=no \
2585
42c0a3b89b06 package librtmp: style improvements
Mark Brand <mabrand@mabrand.nl>
parents: 2584
diff changeset
24 -j '$(JOBS)' install
2584
8ee32fa10c89 new package librtmp
Matthias Gehre <M.Gehre@gmx.de>
parents:
diff changeset
25 endef