aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rename.rb
blob: 9c25d4d75aabb870e9a90ccc1f6f942e7ef170ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Rename < Formula
  url 'http://plasmasturm.org/code/rename/rename', :using => :nounzip
  version '0.1.3'
  homepage 'http://plasmasturm.org/code/rename'
  sha1 'a2235a402d18495513edf690445e0030f31c9ab3'

  def install
    system 'pod2man', 'rename', 'rename.1'
    bin.install 'rename'
    man1.install 'rename.1'
  end
end