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