aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorG Coco2012-12-06 14:06:09 -0500
committerAdam Vandenberg2013-01-17 14:29:44 -0800
commitfbf91baf904f1b1e41cf0dc863c9518d489a947f (patch)
treef54fdada5bd0f29c7b2ce212d714ce66f4e6b192 /Library/Formula
parent10e4a588423659be4f5ba1f93ca059eb8fe0f83e (diff)
downloadhomebrew-fbf91baf904f1b1e41cf0dc863c9518d489a947f.tar.bz2
liboauth 1.0.0
liboauth is a collection of POSIX-c functions implementing the OAuth Core RFC 5849 standard. liboauth provides functions to escape and encode parameters according to OAuth specification and offers high-level functionality to sign requests or verify OAuth signatures as well as perform HTTP requests. Closes #16448. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/liboauth.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/liboauth.rb b/Library/Formula/liboauth.rb
new file mode 100644
index 000000000..8df3dbd14
--- /dev/null
+++ b/Library/Formula/liboauth.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Liboauth < Formula
+ homepage 'http://liboauth.sourceforge.net'
+ url 'http://sourceforge.net/projects/liboauth/files/liboauth-1.0.0.tar.gz'
+ sha1 'cc936a440084f159cc46dab9018f1353f8bee80a'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--disable-curl"
+ system "make install"
+ end
+end