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:
parent
1a06ede7f9
commit
7b08ae35d7
1 changed files with 14 additions and 0 deletions
14
Formula/liboauth.rb
Normal file
14
Formula/liboauth.rb
Normal 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
|
Loading…
Reference in a new issue