895562097d
mongrel2 has changed it's repository.
It was also the opportunity to bump it.
Adding a hash, since we use this packages as an example for the hash in
the manual, it was a bit shamefull that it did not have a proper hash.
Remove 0001-use-CC-variable-to-compile-procer.patch, an equivalent was
applied upstream:
eafe3cf3ef
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Reviewed-by: Lionel Orry <lionel.orry@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
872 B
Makefile
27 lines
872 B
Makefile
################################################################################
|
|
#
|
|
# mongrel2
|
|
#
|
|
################################################################################
|
|
|
|
MONGREL2_VERSION = 1.9.2
|
|
MONGREL2_SOURCE = mongrel2-v$(MONGREL2_VERSION).tar.bz2
|
|
# Do not use the github helper here, the generated tarball is *NOT* the same
|
|
# as the one uploaded by upstream for the release.
|
|
MONGREL2_SITE = https://github.com/mongrel2/mongrel2/releases/download/$(MONGREL2_VERSION)
|
|
MONGREL2_LICENSE = BSD-3c
|
|
MONGREL2_LICENSE_FILES = LICENSE
|
|
MONGREL2_DEPENDENCIES = sqlite zeromq
|
|
|
|
define MONGREL2_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
|
PREFIX=/usr all
|
|
endef
|
|
|
|
define MONGREL2_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
|
PREFIX=/usr DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|