wordplay 7.22

Closes Homebrew/homebrew#14295.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Brian Bennett 2012-08-19 12:12:26 -07:00 committed by Adam Vandenberg
parent 486892a6da
commit 677ccc997b
1 changed files with 23 additions and 0 deletions

23
Formula/wordplay.rb Normal file
View File

@ -0,0 +1,23 @@
require 'formula'
class Wordplay < Formula
homepage 'http://hsvmovies.com/static_subpages/personal_orig/wordplay/index.html'
url 'http://hsvmovies.com/static_subpages/personal_orig/wordplay/wordplay722.tar.Z'
version '7.22'
sha1 '629b4a876b6be966be7ddde7ccdfaa89fc226942'
def patches
# Fixes compiler warnings on Darwin
# Point to words file in share
{ :p0 => [
"https://trac.macports.org/export/101903/trunk/dports/games/wordplay/files/patch-wordplay.c"
]}
end
def install
inreplace "wordplay.c", "@PREFIX@", prefix
system "make"
bin.install 'wordplay'
(share/'wordplay').install 'words721.txt'
end
end