df70822c62
According to the documentation, chapter 6.2.8.2 How to add a package from github " [...] FOO_VERSION = tag or full commit ID FOO_SITE = http://github.com/<user>/<package>/tarball/$(FOO_VERSION) [...] - The tarball name generated by github matches the default one from Buildroot (...), so it is not necessary to specify it in the +.mk+ file. " This commit makes the appropriate changes. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
706 B
Makefile
21 lines
706 B
Makefile
################################################################################
|
|
#
|
|
# liblog4c-localtime
|
|
#
|
|
################################################################################
|
|
|
|
LIBLOG4C_LOCALTIME_VERSION = v1.0
|
|
LIBLOG4C_LOCALTIME_SITE = https://github.com/rcmadruga/log4c-localtime/tarball/$(LIBLOG4C_LOCALTIME_VERSION)
|
|
LIBLOG4C_LOCALTIME_INSTALL_STAGING = YES
|
|
LIBLOG4C_LOCALTIME_CONF_OPT = --disable-expattest
|
|
LIBLOG4C_LOCALTIME_DEPENDENCIES = expat
|
|
LIBLOG4C_LOCALTIME_CONFIG_SCRIPTS = log4c-config
|
|
|
|
define LIBLOG4C_LOCALTIME_FIX_CONFIGURE_PERMS
|
|
chmod +x $(@D)/configure
|
|
endef
|
|
|
|
LIBLOG4C_LOCALTIME_PRE_CONFIGURE_HOOKS += LIBLOG4C_LOCALTIME_FIX_CONFIGURE_PERMS
|
|
|
|
$(eval $(autotools-package))
|