2012-12-23 02:56:06 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=procd
|
2013-07-09 00:35:19 +08:00
|
|
|
PKG_VERSION:=2013-07-08
|
2012-12-23 02:56:06 +08: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-09 00:35:19 +08:00
|
|
|
PKG_SOURCE_VERSION:=725e6bbbe403a950c0ddcd23cb521ffefa705c7d
|
2012-12-23 02:56:06 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
|
|
|
|
PKG_LICENSE:=GPLv2
|
|
|
|
PKG_LICENSE_FILES:=
|
|
|
|
|
2013-05-31 00:00:06 +08:00
|
|
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
|
2012-12-23 02:56:06 +08:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
2013-04-03 18:01:10 +08:00
|
|
|
TARGET_LDFLAGS += $(if $(CONFIG_USE_EGLIBC),-lrt)
|
|
|
|
|
2012-12-23 02:56:06 +08:00
|
|
|
define Package/procd
|
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
2013-06-22 00:53:22 +08:00
|
|
|
DEPENDS:=+ubusd +ubus +libjson-script +ubox +USE_EGLIBC:librt
|
2012-12-23 02:56:06 +08:00
|
|
|
TITLE:=OpenWrt system process manager
|
|
|
|
endef
|
|
|
|
|
2013-03-14 02:11:07 +08:00
|
|
|
define Package/procd/install
|
2013-07-09 00:35:19 +08:00
|
|
|
$(INSTALL_DIR) $(1)/sbin $(1)/lib/functions $(1)/etc/init.d
|
2013-03-14 02:11:07 +08:00
|
|
|
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/{procd,askfirst,udevtrigger,logread} $(1)/sbin/
|
2013-07-09 00:35:19 +08:00
|
|
|
$(INSTALL_BIN) ./files/log.init $(1)/etc/init.d/log
|
2013-03-14 02:11:07 +08: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-23 02:56:06 +08:00
|
|
|
|
|
|
|
$(eval $(call BuildPackage,procd))
|