diff options
| author | Thomas Schreiber | 2012-11-10 20:42:56 +0100 | 
|---|---|---|
| committer | Jack Nagel | 2012-12-22 15:53:32 -0600 | 
| commit | e3087367a5f161364ba543ea0b1205195aeca8bf (patch) | |
| tree | 7a254498f999a1fde429fb99699bc82c3571bcbc /Library/Formula/buildapp.rb | |
| parent | 088bb89cc8af6a9d2431d03ad87f4ecf6be31213 (diff) | |
| download | homebrew-e3087367a5f161364ba543ea0b1205195aeca8bf.tar.bz2 | |
New formula: buildapp 1.4.6
Closes #15963.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/buildapp.rb')
| -rw-r--r-- | Library/Formula/buildapp.rb | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/buildapp.rb b/Library/Formula/buildapp.rb new file mode 100644 index 000000000..353234c25 --- /dev/null +++ b/Library/Formula/buildapp.rb @@ -0,0 +1,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  | 
