15 lines
323 B
Ruby
15 lines
323 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class Buildapp < Formula
|
||
|
homepage 'http://www.xach.com/lisp/buildapp/'
|
||
|
url 'https://github.com/xach/buildapp/archive/release-1.4.6.tar.gz'
|
||
|
sha1 '6ea1edea596d6ba92acf3af9c9f096d4a7732c6c'
|
||
|
|
||
|
depends_on 'sbcl'
|
||
|
|
||
|
def install
|
||
|
bin.mkpath
|
||
|
system "make", "install", "DESTDIR=#{prefix}"
|
||
|
end
|
||
|
end
|