The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / mongrel2 / mongrel2.mk
1 ################################################################################
2 #
3 # mongrel2
4 #
5 ################################################################################
6
7 MONGREL2_VERSION = v1.9.1
8 # Do not use the github helper here, the generated tarball is *NOT* the same
9 # as the one uploaded by upstream for the release.
10 MONGREL2_SITE = https://github.com/zedshaw/mongrel2/releases/download/$(MONGREL2_VERSION)
11 MONGREL2_LICENSE = BSD-3c
12 MONGREL2_LICENSE_FILES = LICENSE
13 MONGREL2_DEPENDENCIES = sqlite zeromq
14
15 define MONGREL2_BUILD_CMDS
16         $(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
17                 PREFIX=/usr all
18 endef
19
20 define MONGREL2_INSTALL_TARGET_CMDS
21         $(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
22                 PREFIX=/usr DESTDIR=$(TARGET_DIR) install
23 endef
24
25 $(eval $(generic-package))