Files
chromebrew/packages/fish.rb
Casey Strouse 677f0863ec Update fish from 2.3.0 to 2.5.0
This is a bugfix/general maintenance release. Completions for a lot more
programs were added and performance improvements were made.

Tested as working on Samsung XE50013-K01US (x86_64).
2017-02-03 17:52:55 -07:00

19 lines
391 B
Ruby

require 'package'
class Fish < Package
version '2.5.0'
source_url 'https://github.com/fish-shell/fish-shell/releases/download/2.5.0/fish-2.5.0.tar.gz'
source_sha1 'ec52debe0a829b9df29f658697523af7c18ee778'
depends_on 'ncurses'
def self.build
system "./configure"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end