mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 08:14:09 -09:00
Largely a bugfix release. Fixes an encryption issue if the cleartext was
exactly 8KB + N*64KB long.
https://git.sr.ht/~min/agec/refs/1.0.0
Drop now upstreamed 0001-io.c-isarmor-do-not-set-eof-for-35-byte-files.patch:
7a529662f9
Upstream renamed the agec-keygen utility to agecgen, so update the test to
match.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
25 lines
644 B
Makefile
25 lines
644 B
Makefile
################################################################################
|
|
#
|
|
# agec
|
|
#
|
|
################################################################################
|
|
|
|
AGEC_VERSION = 1.0.0
|
|
AGEC_SOURCE = $(AGEC_VERSION).tar.gz
|
|
AGEC_SITE = https://git.sr.ht/~min/agec/archive
|
|
AGEC_LICENSE = 0BSD
|
|
AGEC_LICENSE_FILES = LICENSE
|
|
AGEC_DEPENDENCIES = host-pkgconf openssl
|
|
|
|
define AGEC_BUILD_CMDS
|
|
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
|
|
LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs openssl`"
|
|
endef
|
|
|
|
define AGEC_INSTALL_TARGET_CMDS
|
|
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
|
|
PREFIX=$(TARGET_DIR)/usr install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|