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 Homebrew/homebrew#16448.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
G Coco 2012-12-06 14:06:09 -05:00 committed by Adam Vandenberg
parent 1a06ede7f9
commit 7b08ae35d7

14
Formula/liboauth.rb Normal file
View file

@ -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