diff options
| author | Gudleik Rasch | 2010-10-25 13:31:34 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-25 07:10:07 -0700 |
| commit | c17d11490717f860ff9c01fe8fec1fe2bc06880a (patch) | |
| tree | 7de38375806ee610dec29f5d60326dea548c269f | |
| parent | f2304d2b5151e97d3ae1e244901699f1801ce58d (diff) | |
| download | homebrew-c17d11490717f860ff9c01fe8fec1fe2bc06880a.tar.bz2 | |
New formula: lrzsz
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/lrzsz.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/lrzsz.rb b/Library/Formula/lrzsz.rb new file mode 100644 index 000000000..d1ad1c980 --- /dev/null +++ b/Library/Formula/lrzsz.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Lrzsz <Formula + url 'http://www.ohse.de/uwe/releases/lrzsz-0.12.20.tar.gz' + homepage 'http://www.ohse.de/uwe/software/lrzsz.html' + md5 'b5ce6a74abc9b9eb2af94dffdfd372a4' + + def install + system "./configure", "--prefix=#{prefix}", "--mandir=#{man}" + system "make" + + # there's a bug in lrzsz when using custom --prefix + # must install the binaries manually first + bin.install "src/lrz" + bin.install "src/lsz" + + system "make install" + end +end |
