blob: 50028c22678f3f29d091a2b5f40ff3b7ff2f69a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Ipcalc <Formula
url 'http://jodies.de/ipcalc-archive/ipcalc-0.41.tar.gz'
homepage ''
md5 'fb791e9a5220fc8e624d915e18fc4697'
def install
system "/usr/bin/install -d #{prefix}/bin"
system "/usr/bin/install ./ipcalc #{prefix}/bin/"
end
end
|