aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
655 B
Makefile
23 lines
655 B
Makefile
################################################################################
|
|
#
|
|
# perl-gd
|
|
#
|
|
################################################################################
|
|
|
|
PERL_GD_VERSION = 2.53
|
|
PERL_GD_SOURCE = GD-$(PERL_GD_VERSION).tar.gz
|
|
PERL_GD_SITE = $(BR2_CPAN_MIRROR)/authors/id/L/LD/LDS
|
|
PERL_GD_DEPENDENCIES = perl zlib libpng freetype gd
|
|
PERL_GD_LICENSE = Artistic-2.0 or GPLv1+
|
|
PERL_GD_LICENSE_FILES = LICENSE
|
|
|
|
PERL_GD_CONF_OPTS = \
|
|
-options=FT,PNG \
|
|
-lib_gd_path=$(STAGING_DIR)/usr \
|
|
-lib_ft_path=$(STAGING_DIR)/usr \
|
|
-lib_png_path=$(STAGING_DIR)/usr \
|
|
-lib_zlib_path=$(STAGING_DIR)/usr \
|
|
-ignore_missing_gd
|
|
|
|
$(eval $(perl-package))
|