Commit 249f799c authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #280 from cstrouse/add-bacon

Add package for bacon (BASIC-to-C converter) tool
parents 34165450 8fbb5df0
require 'package'
class Bacon < Package
version '3.5'
source_url 'http://www.basic-converter.org/stable/bacon-3.5.tar.gz'
source_sha1 '878da51d1f8bef9baea6523be8f09d8a616f8e9f'
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