diff options
Diffstat (limited to 'homebrew/wumpus')
-rw-r--r-- | homebrew/wumpus/.beer | 26 | ||||
-rw-r--r-- | homebrew/wumpus/.make.sh-auto | 3 | ||||
-rw-r--r-- | homebrew/wumpus/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/wumpus/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/wumpus/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/wumpus/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/wumpus/download.sh | 1 | ||||
-rwxr-xr-x | homebrew/wumpus/patches.sh | 2 |
8 files changed, 36 insertions, 0 deletions
diff --git a/homebrew/wumpus/.beer b/homebrew/wumpus/.beer new file mode 100644 index 000000000..f77a0e094 --- /dev/null +++ b/homebrew/wumpus/.beer @@ -0,0 +1,26 @@ +{ + "name": "Wumpus", + "description": "Exact clone of the ancient BASIC Hunt the Wumpus game", + "url": "http://www.catb.org/~esr/wumpus/wumpus-1.6.tar.gz", + "mirror": null, + "homepage": "http://www.catb.org/~esr/wumpus/", + "depends": [], + "resource": [], + "conflicts": [], + "patches": [ + { + "url": "https://gitlab.com/esr/wumpus/commit/ea272d4786a55dbaa493d016324b7a05b4f165b9.diff", + "strip": "1" + }, + { + "url": "https://gitlab.com/esr/wumpus/commit/99022db86e54c3338d6a670f219a0845fd531530.diff", + "strip": "1" + } + ], + "install": [ + "system \"make\"", + "system \"make\", \"prefix=#{prefix}\", \"install\"" + ], + "version": "1.6", + "file": "wumpus.rb" +}
\ No newline at end of file diff --git a/homebrew/wumpus/.make.sh-auto b/homebrew/wumpus/.make.sh-auto new file mode 100644 index 000000000..77aad4b7b --- /dev/null +++ b/homebrew/wumpus/.make.sh-auto @@ -0,0 +1,3 @@ +pkg:setup +make +make prefix=${PKG_TAPF} DESTDIR=${PKG_DEST} install diff --git a/homebrew/wumpus/_metadata/description b/homebrew/wumpus/_metadata/description new file mode 100644 index 000000000..a96236b3d --- /dev/null +++ b/homebrew/wumpus/_metadata/description @@ -0,0 +1 @@ +Exact clone of the ancient BASIC Hunt the Wumpus game diff --git a/homebrew/wumpus/_metadata/homepage b/homebrew/wumpus/_metadata/homepage new file mode 100644 index 000000000..9048421f2 --- /dev/null +++ b/homebrew/wumpus/_metadata/homepage @@ -0,0 +1 @@ +http://www.catb.org/~esr/wumpus/ diff --git a/homebrew/wumpus/_metadata/name b/homebrew/wumpus/_metadata/name new file mode 100644 index 000000000..48e1e16ee --- /dev/null +++ b/homebrew/wumpus/_metadata/name @@ -0,0 +1 @@ +Wumpus diff --git a/homebrew/wumpus/_metadata/version b/homebrew/wumpus/_metadata/version new file mode 100644 index 000000000..810ee4e91 --- /dev/null +++ b/homebrew/wumpus/_metadata/version @@ -0,0 +1 @@ +1.6 diff --git a/homebrew/wumpus/download.sh b/homebrew/wumpus/download.sh new file mode 100755 index 000000000..08ac38b40 --- /dev/null +++ b/homebrew/wumpus/download.sh @@ -0,0 +1 @@ +wget http://www.catb.org/~esr/wumpus/wumpus-1.6.tar.gz
\ No newline at end of file diff --git a/homebrew/wumpus/patches.sh b/homebrew/wumpus/patches.sh new file mode 100755 index 000000000..e63a8158a --- /dev/null +++ b/homebrew/wumpus/patches.sh @@ -0,0 +1,2 @@ +wget https://gitlab.com/esr/wumpus/commit/ea272d4786a55dbaa493d016324b7a05b4f165b9.diff +wget https://gitlab.com/esr/wumpus/commit/99022db86e54c3338d6a670f219a0845fd531530.diff |