blob: b7829fa2ae4571ea9347852891f5b170db4bcb8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
include $(TOPDIR)/rules.mk
PKG_NAME:=ostiary
PKG_VERSION:=4.0
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://ingles.homeunix.net/software/ost/latest/
PKG_HASH:=1b6a0a8a17fd3aa0f6511cdda81558d54f11023a0c953201ddaaef35f56a82c4
PKG_MAINTAINER:=Chris Geraghty <cgretski@hotmail.com>
PKG_LICENSE:=GPL-2.0-only
PKG_LICENSE_FILES:=COPYING
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/ostiary
SECTION:=base
CATEGORY:=Network
TITLE:=Secure remote execution utility
URL:=http://ingles.homeunix.net/software/ost/index.html
endef
define Package/ostiary/description
Replay-resistent predefined remote-command trigger
endef
define Package/ostiary/conffiles
/etc/ostiary.cfg
endef
MAKE_FLAGS += all
define Package/ostiary/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ostiaryd $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ostclient $(1)/usr/bin/
$(INSTALL_DIR) $(1)/etc
$(INSTALL_CONF) $(PKG_BUILD_DIR)/tests/ostiary.cfg $(1)/etc/ostiary.cfg
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/ostiaryd.init $(1)/etc/init.d/ostiary
endef
$(eval $(call BuildPackage,ostiary))
|