From fbf91baf904f1b1e41cf0dc863c9518d489a947f Mon Sep 17 00:00:00 2001 From: G Coco Date: Thu, 6 Dec 2012 14:06:09 -0500 Subject: 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 --- Library/Formula/liboauth.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Library/Formula/liboauth.rb (limited to 'Library/Formula') 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 -- cgit v1.2.3