mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
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
19 lines
387 B
Ruby
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
|