30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
968 B
Makefile
28 lines
968 B
Makefile
################################################################################
|
|
#
|
|
# p7zip
|
|
#
|
|
################################################################################
|
|
|
|
P7ZIP_VERSION = 15.14.1
|
|
P7ZIP_SOURCE = p7zip_$(P7ZIP_VERSION)_src_all.tar.bz2
|
|
P7ZIP_SITE = http://downloads.sourceforge.net/project/p7zip/p7zip/$(P7ZIP_VERSION)
|
|
P7ZIP_LICENSE = LGPL-2.1+ with unRAR restriction
|
|
P7ZIP_LICENSE_FILES = DOC/License.txt
|
|
|
|
# p7zip buildsystem is a mess: it plays dirty tricks with CFLAGS and
|
|
# CXXFLAGS, so we can't pass them. Instead, it accepts ALLFLAGS_C
|
|
# and ALLFLAGS_CPP as variables to pass the CFLAGS and CXXFLAGS.
|
|
define P7ZIP_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" ALLFLAGS_C="$(TARGET_CFLAGS)" \
|
|
CXX="$(TARGET_CXX)" ALLFLAGS_CPP="$(TARGET_CXXFLAGS)" \
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
-C $(@D) 7zr
|
|
endef
|
|
|
|
define P7ZIP_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/bin/7zr $(TARGET_DIR)/usr/bin/7zr
|
|
endef
|
|
|
|
$(eval $(generic-package))
|