diff options
author | Nuno Goncalves <nunojpg@gmail.com> | 2015-08-09 11:50:11 +0100 |
---|---|---|
committer | Nuno Goncalves <nunojpg@gmail.com> | 2015-08-09 11:50:11 +0100 |
commit | f5e6c1120ba50f81aa882badc2e356fa7518ca5d (patch) | |
tree | fa0b781120465cd1b15f81bf39dd0fb20becf221 /net/kplex/Makefile | |
parent | 96bd9d4787220a99cfa3e0a2b42c34dcd365f5d6 (diff) |
kplex: add init script
Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
Diffstat (limited to 'net/kplex/Makefile')
-rw-r--r-- | net/kplex/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net/kplex/Makefile b/net/kplex/Makefile index fc7dc2c47..5fac1fa2d 100644 --- a/net/kplex/Makefile +++ b/net/kplex/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=kplex -PKG_VERSION:=20150728 +PKG_VERSION:=20150809 PKG_RELEASE=$(PKG_SOURCE_VERSION) @@ -38,10 +38,15 @@ define Package/kplex/description Pseudo Terminals (ptys), Network Interfaces and Files. endef +define Package/kplex/conffiles +/etc/kplex.conf +endef define Package/kplex/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_BUILD_DIR)/kplex $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/kplex.init $(1)/etc/init.d/kplex endef $(eval $(call BuildPackage,kplex)) |