blob: 353234c25bfa9e5e102906882b9a162ccf8a39ec (
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.4.6.tar.gz'
sha1 '6ea1edea596d6ba92acf3af9c9f096d4a7732c6c'
depends_on 'sbcl'
def install
bin.mkpath
system "make", "install", "DESTDIR=#{prefix}"
end
end
|