2012-11-10 19:42:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Buildapp < Formula
|
|
|
|
homepage 'http://www.xach.com/lisp/buildapp/'
|
2013-07-16 04:18:06 +00:00
|
|
|
url 'https://github.com/xach/buildapp/archive/release-1.4.8.tar.gz'
|
|
|
|
sha1 '2a0b045d6b39976331c918607c38f49353a81e43'
|
2012-11-10 19:42:56 +00:00
|
|
|
|
|
|
|
depends_on 'sbcl'
|
|
|
|
|
|
|
|
def install
|
|
|
|
bin.mkpath
|
|
|
|
system "make", "install", "DESTDIR=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|