diff options
| author | Olle Lundberg | 2010-12-15 11:17:49 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2010-12-22 20:58:52 +0000 |
| commit | 6cfb227f41edf2471e36e6a42bc3e484ad225ebe (patch) | |
| tree | 5bea7014a9e901f8df88b0f07aa5636d8d67dc2d /Library/Formula/lzlib.rb | |
| parent | 062a98743574d91cc3cd1f6e38f99cd5e91df9d0 (diff) | |
| download | homebrew-6cfb227f41edf2471e36e6a42bc3e484ad225ebe.tar.bz2 | |
Added lzlib
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/lzlib.rb')
| -rw-r--r-- | Library/Formula/lzlib.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/lzlib.rb b/Library/Formula/lzlib.rb new file mode 100644 index 000000000..180d37400 --- /dev/null +++ b/Library/Formula/lzlib.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Lzlib <Formula + url 'http://download.savannah.gnu.org/releases/lzip/lzlib-1.0.tar.gz' + homepage 'http://www.nongnu.org/lzip/lzlib.html' + md5 '39bfe00964a03be95d51ebbe9104b337' + + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
