diff options
| author | Lin Jen-Shin | 2010-06-17 20:39:49 +0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-17 21:45:19 -0700 |
| commit | 292625792c231e5c120664873fe1a427a886b5f0 (patch) | |
| tree | 733df814f1c9beabdcfd165cc294513cbc963b4e /Library/Formula/upx.rb | |
| parent | 369086f335229541fb8a81de66cd76dc4ea202c0 (diff) | |
| download | homebrew-292625792c231e5c120664873fe1a427a886b5f0.tar.bz2 | |
Formula: add ucl and upx (which depends on ucl)
Diffstat (limited to 'Library/Formula/upx.rb')
| -rw-r--r-- | Library/Formula/upx.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/upx.rb b/Library/Formula/upx.rb new file mode 100644 index 000000000..baf7af36e --- /dev/null +++ b/Library/Formula/upx.rb @@ -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 |
