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.

68 lines
2.2 KiB

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=fish
  6. PKG_VERSION:=3.3.1
  7. PKG_RELEASE:=$(AUTORELEASE)
  8. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  9. PKG_SOURCE_URL:=https://github.com/fish-shell/fish-shell/releases/download/$(PKG_VERSION)
  10. PKG_HASH:=b5b4ee1a5269762cbbe993a4bd6507e675e4100ce9bbe84214a5eeb2b19fae89
  11. PKG_MAINTAINER:=Curtis Jiang <jqqqqqqqqqq@gmail.com>, Hao Dong <halbertdong@gmail.com>
  12. PKG_LICENSE:=GPL-2.0-only
  13. PKG_LICENSE_FILES:=COPYING
  14. PKG_CPE_ID:=cpe:/a:fishshell:fish
  15. include $(INCLUDE_DIR)/package.mk
  16. include $(INCLUDE_DIR)/cmake.mk
  17. define Package/fish
  18. SECTION:=utils
  19. CATEGORY:=Utilities
  20. SUBMENU:=Shells
  21. TITLE:=A smart and user-friendly command line shell
  22. DEPENDS:=+libncurses +libstdcpp +libatomic +librt +libpcre2-32 @!USE_UCLIBC
  23. URL:=https://fishshell.com
  24. endef
  25. define Package/fish/description
  26. Fish is a smart and user-friendly command line shell for OS X, Linux, and the
  27. rest of the family. Fish includes features like syntax highlighting,
  28. autosuggest-as-you-type, and fancy tab completions that just work, with no
  29. configuration required.
  30. endef
  31. CMAKE_OPTIONS += -DBUILD_DOCS=NO
  32. define Package/fish/install
  33. $(INSTALL_DIR) $(1)/usr/bin
  34. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/fish $(1)/usr/bin
  35. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/fish_indent $(1)/usr/bin
  36. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/fish_key_reader $(1)/usr/bin
  37. $(INSTALL_DIR) $(1)/usr/share/fish
  38. $(CP) $(PKG_INSTALL_DIR)/usr/share/fish/* $(1)/usr/share/fish/
  39. rm -rf $(1)/usr/share/fish/groff
  40. rm -rf $(1)/usr/share/fish/man
  41. rm -rf $(1)/usr/share/fish/tools
  42. endef
  43. define Package/fish/postinst
  44. #!/bin/sh
  45. grep fish $${IPKG_INSTROOT}/etc/shells || \
  46. echo "/usr/bin/fish" >> $${IPKG_INSTROOT}/etc/shells
  47. # Backwards compatibility
  48. if [ -e /bin/fish ] && { [ ! -L /bin/fish ] || [ "$(readlink -fn $${IPKG_INSTROOT}/bin/fish)" != "../$(CONFIGURE_PREFIX)/bin/fish" ]; }; then
  49. ln -fs "../$(CONFIGURE_PREFIX)/bin/fish" "$${IPKG_INSTROOT}/bin/fish"
  50. fi
  51. endef
  52. define Package/fish/postrm
  53. rm -rf "$${IPKG_INSTROOT}/$(CONFIGURE_PREFIX)/share/fish/$(PKG_VERSION)"
  54. endef
  55. $(eval $(call BuildPackage,fish))