homebrew-core/Formula/liboauth.rb
G Coco 7b08ae35d7 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>
2013-01-17 14:29:44 -08:00

14 lines
417 B
Ruby

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