You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB

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