4dc9ef6895
According to the Debian changelog, it doesn't seem like there is any security issue addressed between 6.2.10 and 6.2.12: unrar-nonfree (1:6.2.12-1) unstable; urgency=medium * New upstream version 6.2.12 * Rediff patches -- YOKOTA Hiroshi <yokota.hgml@gmail.com> Thu, 05 Oct 2023 20:49:53 +0900 unrar-nonfree (1:6.2.11-1) unstable; urgency=medium * New upstream version 6.2.11 -- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 20 Sep 2023 21:41:29 +0900 Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
711 B
Makefile
25 lines
711 B
Makefile
################################################################################
|
|
#
|
|
# unrar
|
|
#
|
|
################################################################################
|
|
|
|
UNRAR_VERSION = 6.2.12
|
|
UNRAR_SOURCE = unrarsrc-$(UNRAR_VERSION).tar.gz
|
|
UNRAR_SITE = https://www.rarlab.com/rar
|
|
UNRAR_LICENSE = unrar
|
|
UNRAR_LICENSE_FILES = license.txt
|
|
UNRAR_CPE_ID_VENDOR = rarlab
|
|
|
|
define UNRAR_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) CXX="$(TARGET_CXX)" STRIP="/bin/true" \
|
|
CXXFLAGS="$(TARGET_CXXFLAGS) -pthread -std=c++11" \
|
|
LDFLAGS="$(TARGET_LDFLAGS) -pthread" -C $(@D)
|
|
endef
|
|
|
|
define UNRAR_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR)/usr install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|