procd: work around some docker architecture quirks
[openwrt.git] / package / system / procd / Makefile
1 #
2 # Copyright (C) 2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=procd
11 PKG_VERSION:=2014-07-29
12
13 PKG_RELEASE=$(PKG_SOURCE_VERSION)
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL:=git://nbd.name/luci2/procd.git
17 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
18 PKG_SOURCE_VERSION:=7a460b86fb6515ea84a53fe8ba091f20cbe07d02
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
20 CMAKE_INSTALL:=1
21
22 PKG_LICENSE:=GPLv2
23 PKG_LICENSE_FILES:=
24
25 PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
26
27 include $(INCLUDE_DIR)/package.mk
28 include $(INCLUDE_DIR)/cmake.mk
29
30 TARGET_LDFLAGS += $(if $(CONFIG_USE_EGLIBC),-lrt)
31
32 define Package/procd
33   SECTION:=base
34   CATEGORY:=Base system
35   DEPENDS:=+ubusd +ubus +libjson-script +ubox +USE_EGLIBC:librt +libubox +libubus +NAND_SUPPORT:procd-nand
36   TITLE:=OpenWrt system process manager
37 endef
38
39 define Package/procd-nand
40   SECTION:=utils
41   CATEGORY:=Utilities
42   DEPENDS:=@NAND_SUPPORT +ubi-utils
43   TITLE:=OpenWrt sysupgrade nand helper
44 endef
45
46 define Package/procd/install
47         $(INSTALL_DIR) $(1)/sbin $(1)/etc $(1)/lib/functions
48
49         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/{init,procd,askfirst,udevtrigger} $(1)/sbin/
50         $(INSTALL_BIN) ./files/reload_config $(1)/sbin/
51         $(INSTALL_DATA) ./files/hotplug*.json $(1)/etc/
52         $(INSTALL_DATA) ./files/procd.sh $(1)/lib/functions/
53 endef
54
55 define Package/procd-nand/install
56         $(INSTALL_DIR) $(1)/sbin $(1)/lib/upgrade
57
58         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/upgraded $(1)/sbin/
59         $(INSTALL_DATA) ./files/nand.sh $(1)/lib/upgrade/
60 endef
61
62 $(eval $(call BuildPackage,procd))
63 $(eval $(call BuildPackage,procd-nand))