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>
30 lines
831 B
Makefile
30 lines
831 B
Makefile
################################################################################
|
|
#
|
|
# mongrel2
|
|
#
|
|
################################################################################
|
|
|
|
MONGREL2_VERSION = v1.8.0
|
|
MONGREL2_SITE = https://github.com/zedshaw/mongrel2/tarball/$(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
|
|
|
|
define MONGREL2_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/bin/mongrel2
|
|
rm -f $(TARGET_DIR)/usr/bin/m2sh
|
|
rm -f $(TARGET_DIR)/usr/bin/procer
|
|
endef
|
|
|
|
$(eval $(generic-package))
|