Files
chromebrew/packages/diffutils.rb
Casey Strouse 009846ad2e Update diffutils to 3.5
This is a general bugfix/maintenance release. The makefile modifications
are no longer necessary and have been removed.

Tested as working on Samsung XE50013-K01US.

All tests passing.
https://gist.github.com/cstrouse/58a6eb6c5c93231db5b4e113497d7d53
2017-01-30 05:04:29 -07:00

19 lines
387 B
Ruby

require 'package'
class Diffutils < Package
version '3.5'
source_url 'ftp://ftp.gnu.org/gnu/diffutils/diffutils-3.5.tar.xz'
source_sha1 '1169cce8eaaf7290dc087d65db7ed75de0dceb93'
depends_on "libsigsegv"
def self.build
system "./configure --prefix=/usr/local"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end