2012-12-22 18:56:06 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=procd
|
2013-07-14 18:00:51 +00:00
|
|
|
PKG_VERSION:=2013-07-14
|
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-07-14 18:00:51 +00:00
|
|
|
PKG_SOURCE_VERSION:=36d79a90c28ac9d655ccd8261b3ac0b497a5aec1
|
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-05-30 16:00:06 +00:00
|
|
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
|
2012-12-22 18:56:06 +00:00
|
|
|
|
|
|
|
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-06-21 16:53:22 +00:00
|
|
|
DEPENDS:=+ubusd +ubus +libjson-script +ubox +USE_EGLIBC:librt
|
2012-12-22 18:56:06 +00:00
|
|
|
TITLE:=OpenWrt system process manager
|
|
|
|
endef
|
|
|
|
|
2013-03-13 18:11:07 +00:00
|
|
|
define Package/procd/install
|
2013-07-08 16:35:19 +00:00
|
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/lib/functions $(1)/etc/init.d
|
2013-03-13 18:11:07 +00:00
|
|
|
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/{procd,askfirst,udevtrigger,logread} $(1)/sbin/
|
2013-07-11 17:00:54 +00:00
|
|
|
$(INSTALL_BIN) ./files/reload_config $(1)/sbin/
|
2013-07-08 16:35:19 +00:00
|
|
|
$(INSTALL_BIN) ./files/log.init $(1)/etc/init.d/log
|
2013-03-13 18:11:07 +00:00
|
|
|
$(INSTALL_DATA) ./files/hotplug*.json $(1)/etc/
|
|
|
|
$(INSTALL_DATA) ./files/procd.sh $(1)/lib/functions/
|
|
|
|
ln -s /sbin/procd $(1)/sbin/init
|
|
|
|
endef
|
2012-12-22 18:56:06 +00:00
|
|
|
|
|
|
|
$(eval $(call BuildPackage,procd))
|