Makefile 866 B

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