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

class Wtf < Formula
  homepage 'http://cvsweb.netbsd.org/bsdweb.cgi/src/games/wtf/'
  url 'http://mirror.aarnet.edu.au/pub/FreeBSD/ports/distfiles/wtf-20111107.tar.gz'
  sha1 'c5b280cba0c92cf6a80480375bd189a19766e628'

  def install
    inreplace %w[wtf wtf.6], "/usr/share", share
    bin.install "wtf"
    man6.install "wtf.6"
    (share+"misc").install %w[acronyms acronyms.comp]
  end
end