blob: a817c66264b4444313d412973ee8b804fc303d9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  | 
require 'formula'
class Vimpager < Formula
  homepage 'https://github.com/rkitover/vimpager'
  url 'https://github.com/rkitover/vimpager/tarball/1.7.5'
  sha1 'e4c710608e092a5cf5b7b35376dfd3d2c8c388a2'
  head 'https://github.com/rkitover/vimpager.git'
  def install
    inreplace 'vimpager.1', '~/bin/', ''
    bin.install 'vimpager'
    man1.install gzip('vimpager.1')
  end
  def caveats; <<-EOS.undent
    To use vimpager as your default pager, add `export PAGER=vimpager` to your
    shell configuration.
    EOS
  end
end
  |