Makefile 895 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 $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= mosh
  5. PKG_VERSION:= 1.2.6
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 7e82b7fbfcc698c70f5843bb960dadb8e7bd7ac1d4d2151c9d979372ea850e85
  8. PKG_DESCR:= mobile shell
  9. PKG_SECTION:= net/security
  10. PKG_DEPENDS:= zlib ncurses libressl
  11. PKG_BUILDDEP:= protobuf-host protobuf zlib ncurses libressl
  12. PKG_NEEDS:= c++
  13. PKG_URL:= https://mosh.org/
  14. PKG_SITES:= https://mosh.org/
  15. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
  16. include $(ADK_TOPDIR)/mk/package.mk
  17. $(eval $(call PKG_template,MOSH,mosh,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
  18. mosh-install:
  19. $(INSTALL_DIR) $(IDIR_MOSH)/usr/bin
  20. $(INSTALL_BIN) $(WRKINST)/usr/bin/mosh \
  21. $(IDIR_MOSH)/usr/bin
  22. include $(ADK_TOPDIR)/mk/pkg-bottom.mk