blob: 5662a9690bd59a9993fcc35ba7bcd1f10b03e0d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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", "CC=#{ENV.cc}"
bin.install 'wordplay'
(share/'wordplay').install 'words721.txt'
end
end
|