2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-08-11 09:12:06 +02:00
|
|
|
#
|
2013-07-22 07:30:22 +02:00
|
|
|
# supervisor
|
2012-08-11 09:12:06 +02:00
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-08-11 09:12:06 +02:00
|
|
|
|
|
|
|
SUPERVISOR_VERSION = 3.0a12
|
2014-07-31 10:46:58 +02:00
|
|
|
SUPERVISOR_SITE = http://pypi.python.org/packages/source/s/supervisor
|
2012-08-11 09:12:06 +02:00
|
|
|
SUPERVISOR_LICENSE_FILES = LICENSES.txt
|
2013-12-11 21:26:55 +01:00
|
|
|
SUPERVISOR_SETUP_TYPE = setuptools
|
2012-08-11 09:12:06 +02:00
|
|
|
|
2013-12-11 21:26:55 +01:00
|
|
|
define SUPERVISOR_INSTALL_CONF_FILES
|
|
|
|
$(INSTALL) -d -m 755 $(TARGET_DIR)/etc/supervisor.d
|
|
|
|
$(INSTALL) -D -m 644 package/supervisor/supervisord.conf \
|
|
|
|
$(TARGET_DIR)/etc/supervisord.conf
|
2012-08-11 09:12:06 +02:00
|
|
|
endef
|
|
|
|
|
2013-12-11 21:26:55 +01:00
|
|
|
SUPERVISOR_POST_INSTALL_TARGET_HOOKS += SUPERVISOR_INSTALL_CONF_FILES
|
|
|
|
|
|
|
|
define SUPERVISOR_INSTALL_INIT_SYSV
|
|
|
|
$(INSTALL) -D -m 755 package/supervisor/S99supervisord \
|
|
|
|
$(TARGET_DIR)/etc/init.d/S99supervisord
|
2012-08-11 09:12:06 +02:00
|
|
|
endef
|
|
|
|
|
2013-12-11 21:26:55 +01:00
|
|
|
$(eval $(python-package))
|