package/lua-gd: bump to version 2ce8e478a8591afd71e607506bc8c64b161bbd30

drop gdlib-config

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020.11.x
Francois Perrad 2020-09-08 07:23:52 +02:00 committed by Thomas Petazzoni
parent 7a49be66e1
commit f51d1723b1
2 changed files with 23 additions and 3 deletions

View File

@ -1,3 +1,3 @@
# Locally calculated
sha256 114f273a64da6ccbf6e0555757b952f84ab8c134416dd7aae1aeb666ca0e964d lua-gd-e60b13b7977bb3424d7044976ccba5d42c256934.tar.gz
sha256 928fa036b37595d773db1999c9ff43195c4290f0722298fa5b0c3e619c678525 lua-gd-2ce8e478a8591afd71e607506bc8c64b161bbd30.tar.gz
sha256 b0ca41d88ddb0ca785436d37b08b8f413055755eb6bfd3ea0a6ff3214303aa43 COPYING

View File

@ -4,17 +4,37 @@
#
################################################################################
LUA_GD_VERSION = e60b13b7977bb3424d7044976ccba5d42c256934
LUA_GD_VERSION = 2ce8e478a8591afd71e607506bc8c64b161bbd30
LUA_GD_SITE = $(call github,ittner,lua-gd,$(LUA_GD_VERSION))
LUA_GD_LICENSE = MIT
LUA_GD_LICENSE_FILES = COPYING
LUA_GD_DEPENDENCIES = luainterpreter gd
ifeq ($(BR2_PACKAGE_FONTCONFIG),y)
LUA_GD_FEATURES += -DGD_FONTCONFIG
endif
ifeq ($(BR2_PACKAGE_FREETYPE),y)
LUA_GD_FEATURES += -DGD_FREETYPE
endif
ifeq ($(BR2_PACKAGE_JPEG),y)
LUA_GD_FEATURES += -DGD_JPEG
endif
ifeq ($(BR2_PACKAGE_LIBPNG),y)
LUA_GD_FEATURES += -DGD_PNG
endif
ifeq ($(BR2_PACKAGE_XLIB_LIBXPM),y)
LUA_GD_FEATURES += -DGD_XPM
endif
# VERSION follows the scheme described on https://ittner.github.io/lua-gd/manual.html#intro,
# the current version of the binding is 3.
define LUA_GD_BUILD_CMDS
$(MAKE) -C $(@D) gd.so \
GDLIBCONFIG="$(STAGING_DIR)/usr/bin/gdlib-config" \
GDFEATURES="$(LUA_GD_FEATURES)" \
CC=$(TARGET_CC) \
CFLAGS="$(TARGET_CFLAGS) -fPIC -DVERSION=\\\"$(GD_VERSION)r3\\\"" \
LFLAGS="-shared -lgd"