4854a1cf4c
Oniguruma is a modern and flexible regular expressions library. It encompasses features from different regular expression implementations that traditionally exist in different languages. https://github.com/kkos/oniguruma Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16 lines
441 B
Makefile
16 lines
441 B
Makefile
################################################################################
|
|
#
|
|
# oniguruma
|
|
#
|
|
################################################################################
|
|
|
|
ONIGURUMA_VERSION = 6.9.1
|
|
ONIGURUMA_SITE = $(call github,kkos,oniguruma,v$(ONIGURUMA_VERSION))
|
|
ONIGURUMA_LICENSE = BSD-2-Clause
|
|
ONIGURUMA_LICENSE_FILES = COPYING
|
|
# From git
|
|
ONIGURUMA_AUTORECONF = YES
|
|
ONIGURUMA_INSTALL_STAGING = YES
|
|
|
|
$(eval $(autotools-package))
|