mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
dcf31c6a1e
--------- Co-authored-by: tiopex <tiopxyz@gmail.com> Co-authored-by: tiopex <67048640+tiopex@users.noreply.github.com>
18 lines
581 B
Makefile
18 lines
581 B
Makefile
################################################################################
|
|
#
|
|
# mcrypt
|
|
#
|
|
################################################################################
|
|
|
|
MCRYPT_VERSION = 2.6.8
|
|
MCRYPT_SITE = http://downloads.sourceforge.net/project/mcrypt/MCrypt/$(MCRYPT_VERSION)
|
|
MCRYPT_DEPENDENCIES = libmcrypt libmhash \
|
|
$(if $(BR2_PACKAGE_ZLIB),zlib) \
|
|
$(if $(BR2_PACKAGE_LIBICONV),libiconv) \
|
|
$(TARGET_NLS_DEPENDENCIES)
|
|
MCRYPT_CONF_OPTS = --with-libmcrypt-prefix=$(STAGING_DIR)/usr
|
|
MCRYPT_LICENSE = GPL-3.0
|
|
MCRYPT_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(autotools-package))
|