blob: a9656fb2934c78163c13ac12b422cf583896e71e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Buildapp < Formula
homepage 'http://www.xach.com/lisp/buildapp/'
url 'https://github.com/xach/buildapp/archive/release-1.5.1.tar.gz'
sha1 '164377c4cf7f23e69d80d55cbd7a0db028ae97d5'
depends_on 'sbcl'
def install
bin.mkpath
system "make", "install", "DESTDIR=#{prefix}"
end
end
|