aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/tracebox.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/Library/Formula/tracebox.rb b/Library/Formula/tracebox.rb
new file mode 100644
index 000000000..37fd4764b
--- /dev/null
+++ b/Library/Formula/tracebox.rb
@@ -0,0 +1,29 @@
+require 'formula'
+
+class Tracebox < Formula
+ homepage 'http://www.tracebox.org/'
+ url 'https://drone.io/github.com/tracebox/tracebox/files/tracebox-0.1.tar.gz'
+ sha1 'bb79f17cb799c3b4b1b8f4e3ab0775ae40b2060c'
+
+ depends_on 'lua'
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--disable-silent-rules",
+ "--prefix=#{prefix}"
+ system "make", "install"
+ end
+
+ def caveats; <<-EOS.undent
+ tracebox requires superuser privileges. You can either run the program
+ via `sudo`, or change its ownership to root and set the setuid bit:
+
+ sudo chown root:wheel #{bin}/tracebox
+ sudo chmod u+s #{bin}/tracebox
+
+ In any case, you should be certain that you trust the software you
+ are executing with elevated privileges.
+ EOS
+ end
+end