f33fd75afc
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for MPLv1.0/MPLv1.1/MPLv2.0 is MPL-1.0/MPL-1.1/ MPL-2.0. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/MPLv([1-2]\.[0-1])/MPL-\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
713 B
Makefile
26 lines
713 B
Makefile
################################################################################
|
|
#
|
|
# mp4v2
|
|
#
|
|
################################################################################
|
|
|
|
MP4V2_VERSION = 2.0.0
|
|
MP4V2_SOURCE = mp4v2-$(MP4V2_VERSION).tar.bz2
|
|
MP4V2_SITE = https://mp4v2.googlecode.com/files
|
|
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))
|