aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorTom Whipple2013-07-02 08:01:17 -0700
committerAdam Vandenberg2013-09-15 12:46:52 -0700
commit1ad3d44053d6dbafb74185178bfdfdfb426d8c46 (patch)
tree476fd1e052138c03b9a6817cfffc01d6c0d394df /Library
parent2c0339c527f1ed9ffe5af7ae66493a61d75a9086 (diff)
downloadhomebrew-1ad3d44053d6dbafb74185178bfdfdfb426d8c46.tar.bz2
nPth 0.91
Closes #20962. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/npth.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/npth.rb b/Library/Formula/npth.rb
new file mode 100644
index 000000000..679d1f5cc
--- /dev/null
+++ b/Library/Formula/npth.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Npth < Formula
+ homepage 'http://lwn.net/Articles/496268/'
+ url 'ftp://ftp.gnupg.org/gcrypt/npth/npth-0.91.tar.bz2'
+ sha1 'bb10db9f043fb63424162b6da6969af9082e6fa0'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make", "install"
+ end
+end