2012-12-22 18:56:06 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=procd
|
2013-04-25 19:02:20 +00:00
|
|
|
PKG_VERSION:=2013-04-24
|
2012-12-22 18:56:06 +00:00
|
|
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
PKG_SOURCE_URL:=git://nbd.name/luci2/procd.git
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
2013-04-25 19:02:20 +00:00
|
|
|
PKG_SOURCE_VERSION:=7edfbb45edcf275a855f5e1f5cc24cac81e382ff
|
2012-12-22 18:56:06 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
|
|
|
|
PKG_LICENSE:=GPLv2
|
|
|
|
PKG_LICENSE_FILES:=
|
|
|
|
|
2013-03-13 18:11:07 +00:00
|
|
|
PKG_CONFIG_DEPENDS:=CONFIG_PROCD_INIT
|
|
|
|
|
2012-12-22 18:56:06 +00:00
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
2013-04-03 10:01:10 +00:00
|
|
|
TARGET_LDFLAGS += $(if $(CONFIG_USE_EGLIBC),-lrt)
|
|
|
|
|
2012-12-22 18:56:06 +00:00
|
|
|
define Package/procd
|
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
2013-04-25 19:02:20 +00:00
|
|
|
DEPENDS:=+ubusd +ubus +libjson-script +USE_EGLIBC:librt +PROCD_INIT:ubox
|
2012-12-22 18:56:06 +00:00
|
|
|
TITLE:=OpenWrt system process manager
|
|
|
|
endef
|
|
|
|
|
2013-03-13 18:11:07 +00:00
|
|
|
ifneq ($(CONFIG_PROCD_INIT),)
|
|
|
|
define Package/procd/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/lib/functions $(1)/etc
|
|
|
|
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/{procd,askfirst,udevtrigger,logread} $(1)/sbin/
|
|
|
|
$(INSTALL_DATA) ./files/hotplug*.json $(1)/etc/
|
|
|
|
$(INSTALL_DATA) ./files/procd.sh $(1)/lib/functions/
|
|
|
|
ln -s /sbin/procd $(1)/sbin/init
|
|
|
|
endef
|
|
|
|
else
|
2012-12-22 18:56:06 +00:00
|
|
|
define Package/procd/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/lib/functions $(1)/etc/init.d
|
|
|
|
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/procd $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) ./files/procd.init $(1)/etc/init.d/procd
|
|
|
|
$(INSTALL_DATA) ./files/procd.sh $(1)/lib/functions/
|
|
|
|
endef
|
2013-03-13 18:11:07 +00:00
|
|
|
endif
|
2012-12-22 18:56:06 +00:00
|
|
|
|
|
|
|
$(eval $(call BuildPackage,procd))
|