add netris-0.52 w/debian patches
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
1c949cf1ad
commit
11bf40f6e5
1 changed files with 30 additions and 0 deletions
30
Formula/netris.rb
Normal file
30
Formula/netris.rb
Normal file
|
@ -0,0 +1,30 @@
|
|||
require 'formula'
|
||||
|
||||
class Netris < Formula
|
||||
url 'ftp://ftp.netris.org/pub/netris/netris-0.52.tar.gz'
|
||||
homepage 'http://www.netris.org/'
|
||||
md5 'b55af5697175ee06f7c6e40101979c38'
|
||||
|
||||
# Debian has been applying fixes and security patches, so let's re-use their work.
|
||||
# Also fixes case of "TERM=xterm-color256" which otherwise segfaults.
|
||||
def patches
|
||||
[
|
||||
'http://patch-tracker.debian.org/patch/series/dl/netris/0.52-9/01_multi-games-with-scoring',
|
||||
'http://patch-tracker.debian.org/patch/series/dl/netris/0.52-9/02_line-count-patch',
|
||||
'http://patch-tracker.debian.org/patch/series/dl/netris/0.52-9/03_staircase-effect-fix',
|
||||
'http://patch-tracker.debian.org/patch/series/dl/netris/0.52-9/04_robot-close-fixup',
|
||||
'http://patch-tracker.debian.org/patch/series/dl/netris/0.52-9/05_init-static-vars',
|
||||
'http://patch-tracker.debian.org/patch/series/dl/netris/0.52-9/06_curses.c-include-term.h',
|
||||
'http://patch-tracker.debian.org/patch/series/dl/netris/0.52-9/07_curses.c-include-time.h',
|
||||
'http://patch-tracker.debian.org/patch/series/dl/netris/0.52-9/08_various-fixes',
|
||||
'http://patch-tracker.debian.org/patch/series/dl/netris/0.52-9/09_ipv6',
|
||||
'http://patch-tracker.debian.org/patch/series/dl/netris/0.52-9/10_fix-memory-leak',
|
||||
]
|
||||
end
|
||||
|
||||
def install
|
||||
system "sh Configure"
|
||||
system "make"
|
||||
bin.install "netris"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue