blob: 88c6736836e644ba563e65de0dafcdf659b1d333 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Fasd < Formula
  homepage 'https://github.com/clvv/fasd'
  url 'https://github.com/clvv/fasd/tarball/0.5.5'
  sha1 '8ce380ab9e04b4cc14e79557fbb0e7b0ef4b61f7'
  def install
    bin.install 'fasd'
    man1.install 'fasd.1'
  end
end
  |