Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -3,9 +3,9 @@ config BR2_PACKAGE_LIBTOMCRYPT
|
||||
select BR2_PACKAGE_LIBTOMMATH
|
||||
help
|
||||
LibTomCrypt is a fairly comprehensive, modular and portable
|
||||
cryptographic toolkit that provides developers with a vast array
|
||||
of well known published block ciphers, one-way hash functions,
|
||||
chaining modes, pseudo-random number generators, public key
|
||||
cryptography and a plethora of other routines.
|
||||
cryptographic toolkit that provides developers with a vast
|
||||
array of well known published block ciphers, one-way hash
|
||||
functions, chaining modes, pseudo-random number generators,
|
||||
public key cryptography and a plethora of other routines.
|
||||
|
||||
http://www.libtom.net
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 e33b47d77a495091c8703175a25c8228aff043140b2554c08a3c3cd71f79d116 crypt-1.17.tar.bz2
|
||||
sha256 57c13a34fbfd45696189d19e47864e48f4e5c11590c29b444accb8edbf047f14 crypt-1.18.1.tar.xz
|
||||
|
||||
@@ -4,24 +4,25 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBTOMCRYPT_VERSION = 1.17
|
||||
LIBTOMCRYPT_SITE = https://github.com/libtom/libtomcrypt/releases/download/$(LIBTOMCRYPT_VERSION)
|
||||
LIBTOMCRYPT_SOURCE = crypt-$(LIBTOMCRYPT_VERSION).tar.bz2
|
||||
LIBTOMCRYPT_VERSION = 1.18.1
|
||||
LIBTOMCRYPT_SITE = https://github.com/libtom/libtomcrypt/releases/download/v$(LIBTOMCRYPT_VERSION)
|
||||
LIBTOMCRYPT_SOURCE = crypt-$(LIBTOMCRYPT_VERSION).tar.xz
|
||||
LIBTOMCRYPT_LICENSE = WTFPL
|
||||
LIBTOMCRYPT_LICENSE_FILES = LICENSE
|
||||
LIBTOMCRYPT_INSTALL_STAGING = YES
|
||||
LIBTOMCRYPT_INSTALL_TARGET = NO # only static library
|
||||
LIBTOMCRYPT_DEPENDENCIES = libtommath
|
||||
|
||||
LIBTOMCRYPT_CFLAGS = -I./src/headers $(TARGET_CFLAGS) -DLTC_SOURCE -DLTM_DESC \
|
||||
$(if $(BR2_USE_WCHAR),,-DLTC_NO_WCHAR)
|
||||
LIBTOMCRYPT_CFLAGS = -I./src/headers $(TARGET_CFLAGS) -DLTC_SOURCE -DLTM_DESC
|
||||
|
||||
define LIBTOMCRYPT_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) CFLAGS="$(LIBTOMCRYPT_CFLAGS)"
|
||||
endef
|
||||
|
||||
define LIBTOMCRYPT_INSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(STAGING_DIR)" NODOCS=1 INSTALL_USER=$(shell id -u) INSTALL_GROUP=$(shell id -g) install
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(STAGING_DIR)" \
|
||||
PREFIX=/usr NODOCS=1 INSTALL_USER=$(shell id -u) \
|
||||
INSTALL_GROUP=$(shell id -g) install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
|
||||
Reference in New Issue
Block a user