blob: 98d2fa82f1c510be3856a5a75545cab6791f6b16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Rename <Formula
url 'http://plasmasturm.org/code/rename/rename'
version '0.1.3'
homepage 'http://plasmasturm.org/code/rename'
md5 'ce931227630a44d5d4ca4234a1fb8e63'
def download_strategy
NoUnzipCurlDownloadStrategy
end
def install
system 'pod2man', 'rename', 'rename.1'
bin.install 'rename'
man1.install 'rename.1'
end
end
|