--- title: hotplug-initd-services ref: hotplug-initd-services lang: en --- == Makefile [,make] ---- # # Copyright (C) 2019 Gioacchino Mazzurco # # This is free software, licensed under the GNU Affero General Public License v3. # include $(TOPDIR)/rules.mk GIT_COMMIT_DATE:=$(shell git log -n 1 --pretty=%ad --date=short . ) GIT_COMMIT_TSTAMP:=$(shell git log -n 1 --pretty=%at . ) PKG_NAME:=hotplug-initd-services PKG_VERSION=$(GIT_COMMIT_DATE)-$(GIT_COMMIT_TSTAMP) include $(INCLUDE_DIR)/package.mk define Package/$(PKG_NAME) TITLE:=Hotplug events of init.d services CATEGORY:=LibreMesh MAINTAINER:=Gioacchino Mazzurco URL:=http://libremesh.org DEPENDS:=+libubox-lua +libubus-lua +random-numgen \ +lua +luci-lib-nixio PKGARCH:=all endef define Package/$(PKG_NAME)/description Provide trigger hotplug events when init.d services are started and stopped. Put your hooks into /etc/hotplug.d/initd/. endef define Build/Compile endef define Package/$(PKG_NAME)/install $(INSTALL_DIR) $(1)/ $(CP) ./files/* $(1)/ endef $(eval $(call BuildPackage,$(PKG_NAME))) ----