Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
Formula: add ucl and upx (which depends on ucl)
Browse files Browse the repository at this point in the history
  • Loading branch information
godfat authored and adamv committed Jun 18, 2010
1 parent 369086f commit 2926257
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Library/Formula/upx.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
require 'formula'

class Upx <Formula
url 'http://upx.sourceforge.net/download/upx-3.05-src.tar.bz2'
homepage 'http://upx.sourceforge.net'
md5 '1f0ca94c8c26a816402274dd7e628334'

depends_on 'ucl'

def install
system "make all"
system "src/upx.out src/upx.out"
bin.install "src/upx.out" => "upx"
end
end

0 comments on commit 2926257

Please sign in to comment.