aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/termrec.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/Library/Formula/termrec.rb b/Library/Formula/termrec.rb
new file mode 100644
index 000000000..2a45a651e
--- /dev/null
+++ b/Library/Formula/termrec.rb
@@ -0,0 +1,27 @@
+require "formula"
+
+class Termrec < Formula
+ homepage "http://angband.pl/termrec.html"
+ head "http://angband.pl/git/termrec/", :using => :git
+ url "https://github.com/kilobyte/termrec/archive/0.17.tar.gz"
+ sha1 "45df1b35b7f236fafd1e4db9c45543501dfde359"
+
+ depends_on "autoconf" => :build
+ depends_on "automake" => :build
+ depends_on "libtool" => :build
+ depends_on "xz"
+
+ def install
+ inreplace "autogen", "libtoolize", "glibtoolize"
+ system "./autogen"
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--disable-silent-rules",
+ "--prefix=#{prefix}"
+ system "make", "install"
+ end
+
+ test do
+ system "#{bin}/termrec", "--help"
+ end
+end