Commit cc29a3c0 authored by Casey Strouse's avatar Casey Strouse

Add gc (7.2g) package

gc is also known as the Boehm-Demers-Weiser conservative garbage
collector. This is a dependency for multiple developer tools that I am
creating packages for.

Tested as working properly on Samsung XE50013-K01US.
parent c44dd0c6
require 'package'
class Gc < Package
version '7.2g'
source_url 'http://www.hboehm.info/gc/gc_source/gc-7.2g.tar.gz'
source_sha1 'd470f6c0dcb55f8a4f26199731edf006eba5b85c'
def self.build
system "./configure --prefix=/usr/local"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment