2012-11-10 19:42:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Buildapp < Formula
|
|
|
|
homepage 'http://www.xach.com/lisp/buildapp/'
|
2014-02-15 18:00:39 +00:00
|
|
|
url 'https://github.com/xach/buildapp/archive/release-1.5.2.tar.gz'
|
|
|
|
sha1 'be9a8fbcbd52383041c96f3b761f0d8d8ed66de4'
|
2012-11-10 19:42:56 +00:00
|
|
|
|
|
|
|
depends_on 'sbcl'
|
|
|
|
|
|
|
|
def install
|
|
|
|
bin.mkpath
|
|
|
|
system "make", "install", "DESTDIR=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|