Commit aee8f7f4 authored by Casey Strouse's avatar Casey Strouse

Add tinycc (0.9.26) package

TinyCC (aka TCC) is a small but hyper fast C compiler.

Tested as working properly on Samsung XE50013-K01US.
parent 56502082
require 'package'
class Tinycc < Package
version '0.9.26'
source_url 'http://download.savannah.gnu.org/releases/tinycc/tcc-0.9.26.tar.bz2'
source_sha1 '7110354d3637d0e05f43a006364c897248aed5d0'
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