blob: 914c526189cbc584662745475d626f13021cd424 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class MemcacheTop < Formula
homepage 'http://code.google.com/p/memcache-top/'
url 'http://memcache-top.googlecode.com/files/memcache-top-v0.6'
version '0.6'
sha1 'eaac357e13ac2a531c28081783fdcc3ddbe98ede'
def install
bin.install "memcache-top-v#{version}" => "memcache-top"
end
end
|