buildroot/package/mtools/mtools.mk
Bernd Kuhls f880286657 package/mtools: bump version to 4.0.24
Release notes:
https://lists.gnu.org/archive/html/info-mtools/2020-03/msg00000.html

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-04-12 23:14:03 +02:00

36 lines
939 B
Makefile

################################################################################
#
# mtools
#
################################################################################
MTOOLS_VERSION = 4.0.24
MTOOLS_SOURCE = mtools-$(MTOOLS_VERSION).tar.lz
MTOOLS_SITE = $(BR2_GNU_MIRROR)/mtools
MTOOLS_LICENSE = GPL-3.0+
MTOOLS_LICENSE_FILES = COPYING
MTOOLS_CONF_OPTS = --without-x
# info documentation not needed
MTOOLS_CONF_ENV = \
ac_cv_func_setpgrp_void=yes \
ac_cv_lib_bsd_gethostbyname=no \
ac_cv_lib_bsd_main=no \
ac_cv_path_INSTALL_INFO=
HOST_MTOOLS_CONF_ENV = \
ac_cv_lib_bsd_gethostbyname=no \
ac_cv_lib_bsd_main=no \
ac_cv_path_INSTALL_INFO=
# link with iconv if enabled
ifeq ($(BR2_PACKAGE_LIBICONV),y)
MTOOLS_DEPENDENCIES += libiconv
MTOOLS_CONF_ENV += LIBS=-liconv
endif
# Package does not build in parallel due to improper make rules
MTOOLS_MAKE = $(MAKE1)
$(eval $(autotools-package))
$(eval $(host-autotools-package))