diff options
| author | Lin Jen-Shin | 2010-06-17 20:39:49 +0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-17 21:45:13 -0700 |
| commit | 369086f335229541fb8a81de66cd76dc4ea202c0 (patch) | |
| tree | 556030c27e9bb390c5198d660572a946e10c8374 | |
| parent | 9dc15bc563092a470dec5ca917ad2e37c111a23d (diff) | |
| download | homebrew-369086f335229541fb8a81de66cd76dc4ea202c0.tar.bz2 | |
Formula: add ucl and upx (which depends on ucl)
| -rw-r--r-- | Library/Formula/ucl.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/ucl.rb b/Library/Formula/ucl.rb new file mode 100644 index 000000000..4268cc9ec --- /dev/null +++ b/Library/Formula/ucl.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Ucl <Formula + url 'http://www.oberhumer.com/opensource/ucl/download/ucl-1.03.tar.gz' + homepage 'http://www.oberhumer.com/opensource/ucl/' + md5 '852bd691d8abc75b52053465846fba34' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
