Files
chromebrew/packages/fish.rb
Maximilian Downey Twiss 40b8844fa3 Upgrade f* packages (#10244)
* f2fs-tools 1.14.0 -> 1.16.0

* faad2 2.10.1 -> 2.11.1

* fakeroot 1.25.3 -> 1.35.1

* faultstat 0.01.01 -> 0.01.11

* fcft 2.5.1 -> 3.1.8

* feh 3.6.3 -> 3.10.3

* fetch 12.0.10 -> 12.0.11

* Add libgnt package

* Finch 2.12.0-1 -> 2.14.13

* fish 3.6.1 -> 3.7.1

* flatseal 1.7.5 -> 2.2.0

* flif 0.3 -> 0.4

* fnotifystat 0.02.02 -> 0.03.00

* Foliate 2.6.4 -> 3.1.1

* Folks 0.15.7 -> 0.15.9

* util_macros 1.19.3 -> xorg_macros 1.20.1

* font-util 1.3.2 -> 1.4.1

* font-adobe-100dpi 1.0.3 -> 1.0.4

* font-adobe-75dpi 1.0.3 -> 1.0.4

* font-adobe-utopia-100dpi 1.0.4 -> 1.0.5

* font-adobe-utopia-75dpi 1.0.4 -> 1.0.5

* font-adobe-utopia-type1 1.0.4 -> 1.0.5

* font-bh-100dpi 1.0.3 -> 1.0.4

* font-bh-75dpi 1.0.3 -> 1.0.4

* font-bh-lucidatypewriter-100dpi 1.0.3 -> 1.0.4

* font-bh-lucidatypewriter-75dpi 1.0.3 -> 1.0.4

* font-bh-ttf 1.0.3 -> 1.0.4

* font-bh-type1 1.0.3 -> 1.0.4

* font-bitstream-100dpi 1.0.3 -> 1.0.4

* font-bitstream-75dpi 1.0.3 -> 1.0.4

* font-bitstream-type1 1.0.3 -> 1.0.4

* font-cursor-misc 1.0.3 -> 1.0.4

* font-daewoo-misc 1.0.3 -> 1.0.4

* font-dec-misc 1.0.3 -> 1.0.4

* font-isas-misc 1.0.3 -> 1.0.4

* font-jis-misc 1.0.3 -> 1.0.4

* font-misc-misc 1.1.2 -> 1.1.3

* font-mutt-misc 1.0.3 -> 1.0.4

* Add libspiro package

* fontforge 20170731 -> 20230101

* tllist 1.0.5 -> 1.1.0

* foot 1.15.0 -> 1.18.0

* forkstat 0.02.10 -> 0.03.02

* fossil 2.6 -> 2.24

* Fragments 2.1.1 -> 3.0.1

* FreeGLUT 3.2.1 -> 3.6.0
2024-08-03 08:01:05 -04:00

45 lines
1.6 KiB
Ruby

require 'buildsystems/cmake'
class Fish < CMake
description 'fish is a smart and user-friendly command line shell for macOS, Linux, and the rest of the family.'
homepage 'https://fishshell.com/'
version '3.7.1'
license 'GPL-2'
compatibility 'all'
source_url 'https://github.com/fish-shell/fish-shell.git'
git_hashtag version
binary_compression 'tar.zst'
binary_sha256({
aarch64: '388f32d6728420ed6108742686571826c7009ac85f8e816253882e36ea186b4c',
armv7l: '388f32d6728420ed6108742686571826c7009ac85f8e816253882e36ea186b4c',
i686: 'bf2293d96b16851fab095a6aa4dfbe0716dbac249162f2ae1cad5e09ba316ea6',
x86_64: '2477a4fc6df840d2e1fc9b84de854cacc33184d97a307b36ea8588c077fd1082'
})
depends_on 'gcc_lib' # R
depends_on 'glibc' # R
depends_on 'ncurses' # R
depends_on 'pcre2' # R
cmake_options "-DCURSES_INCLUDE_PATH=#{CREW_PREFIX}/include/ncurses"
def self.postinstall
ExitMessage.add <<~EOT1.lightblue
To run fish, type `fish` in your terminal.
Even if you are already in fish, you should now start a new fish session.
To use fish as your login shell:
* add the line '#{CREW_PREFIX}/bin/fish' to the file '#{CREW_PREFIX}/etc/shells':
echo '#{CREW_PREFIX}/bin/fish' | tee -a #{CREW_PREFIX}/etc/shells > /dev/null
* run 'chsh -s #{CREW_PREFIX}/bin/fish'
To set your colors, run `fish_config`
To scan your man pages for completions, run `fish_update_completions`
To accept autosuggestions (in grey) as you type, hit `ctrl-F` or right arrow key.
Have fun! <><
EOT1
end
end