Makefile 876 B

12345678910111213141516171819202122232425262728293031
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:= autossh
  7. PKG_VERSION:= 1.4b
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 8f9aa006f6f69e912d3c2f504622d6f7
  10. PKG_DESCR:= Automatically restart SSH sessions and tunnels
  11. PKG_SECTION:= net
  12. PKG_DEPENDS:= openssh-client
  13. PKG_URL:= http://www.harding.motd.ca/autossh
  14. PKG_SITES:= http://www.harding.motd.ca/autossh/
  15. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tgz
  16. include $(TOPDIR)/mk/package.mk
  17. $(eval $(call PKG_template,AUTOSSH,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. CONFIGURE_STYLE:= gnu
  19. BUILD_STYLE:= auto
  20. do-install:
  21. $(INSTALL_DIR) $(IDIR_AUTOSSH)/usr/bin
  22. $(INSTALL_BIN) $(WRKBUILD)/autossh $(IDIR_AUTOSSH)/usr/bin/
  23. include ${TOPDIR}/mk/pkg-bottom.mk