e6ea6b7865
There is no benefit in using the shortened git revision hash. On the contrary: the shorter the hash, the higher the risk of having collisions with another commit. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Acked-by: Samuel Martin <s.martin49@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
650 B
Makefile
24 lines
650 B
Makefile
################################################################################
|
|
#
|
|
# filemq
|
|
#
|
|
################################################################################
|
|
|
|
FILEMQ_VERSION = 8fac5140ddbca3c4742016795fbbf1d6579902f3
|
|
FILEMQ_SITE = git://github.com/zeromq/filemq.git
|
|
|
|
FILEMQ_AUTORECONF = YES
|
|
FILEMQ_CONF_ENV = fmq_have_asciidoc=no
|
|
FILEMQ_INSTALL_STAGING = YES
|
|
FILEMQ_DEPENDENCIES = czmq openssl zeromq
|
|
FILEMQ_LICENSE = LGPLv3+ with exceptions
|
|
FILEMQ_LICENSE_FILES = COPYING COPYING.LESSER
|
|
|
|
define FILEMQ_CREATE_CONFIG_DIR
|
|
mkdir -p $(@D)/config
|
|
endef
|
|
|
|
FILEMQ_POST_PATCH_HOOKS += FILEMQ_CREATE_CONFIG_DIR
|
|
|
|
$(eval $(autotools-package))
|