diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/lesspipe.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/lesspipe.rb b/Library/Formula/lesspipe.rb new file mode 100644 index 000000000..5218af741 --- /dev/null +++ b/Library/Formula/lesspipe.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Lesspipe < Formula + homepage 'http://www-zeuthen.desy.de/~friebel/unix/lesspipe.html' + url 'ftp://ftp.ifh.de/pub/unix/utility/lesspipe-1.70.tar.gz' + md5 '1eefbc1a4d95bb0726fc23ff5c66fc2e' + + def install + system "./configure", "--prefix=#{prefix}", "--default" + man1.mkpath + system "make install" + end +end |
