blob: 2a38c1c0add66d9d2314007de6b01c91d3ad2d7a (
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.tar.gz'
sha1 '080acc59c686ac6a2a663a09340924592687966c'
depends_on 'sbcl'
def install
bin.mkpath
system "make", "install", "DESTDIR=#{prefix}"
end
end
|