Files
chromebrew/packages/gawk.rb
Casey Strouse 405300cf43 Update gawk to 4.1.4
This is a general bugfix/maintenance release.

Tested as working on Samsung XE50013-K01US.

All tests passing.
https://gist.github.com/cstrouse/e67332cd8c2ed5946a7e571408b34e7f
2017-01-30 04:39:47 -07:00

17 lines
350 B
Ruby

require 'package'
class Gawk < Package
version '4.1.4'
source_url 'http://ftp.gnu.org/gnu/gawk/gawk-4.1.4.tar.xz'
source_sha1 'd67e00e2f6178e9cbd2c0ba923ae157bc0b3b570'
def self.build
system './configure --prefix=/usr/local'
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end