a324bbcf7e
- Switch to new active fork: https://github.com/enzo1982/mp4v2/discussions/1461abd2b13
- C++11 is not needed anymore thanks to5a57bc2ce8
- Drop patch (not needed since23f8b907d4
) - Update license (minor fix:0c37402d9d
) - Version 2.1.1 was never released before so no issue is expected (except a misunderstanding of users but new upstream is aware of this: https://github.com/enzo1982/mp4v2/discussions/1#discussioncomment-2399344) https://github.com/enzo1982/mp4v2/releases/tag/v2.1.1 https://github.com/enzo1982/mp4v2/releases/tag/v2.1.0 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
27 lines
751 B
Makefile
27 lines
751 B
Makefile
################################################################################
|
|
#
|
|
# mp4v2
|
|
#
|
|
################################################################################
|
|
|
|
MP4V2_VERSION = 2.1.1
|
|
MP4V2_SITE = \
|
|
https://github.com/enzo1982/mp4v2/releases/download/v$(MP4V2_VERSION)
|
|
MP4V2_SOURCE = mp4v2-$(MP4V2_VERSION).tar.bz2
|
|
MP4V2_INSTALL_STAGING = YES
|
|
MP4V2_LICENSE = MPL-1.1
|
|
MP4V2_LICENSE_FILES = COPYING
|
|
|
|
# help2man expects to be able to run utilities on the build machine to
|
|
# grab --help output which doesn't work when cross compiling, so
|
|
# disable it
|
|
MP4V2_CONF_ENV = ac_cv_prog_FOUND_HELP2MAN=no
|
|
|
|
ifeq ($(BR2_PACKAGE_MP4V2_UTIL),y)
|
|
MP4V2_CONF_OPTS += --enable-util
|
|
else
|
|
MP4V2_CONF_OPTS += --disable-util
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|