2012-03-07 05:36:50 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Flickcurl < Formula
|
|
|
|
homepage 'http://librdf.org/flickcurl/'
|
2013-11-30 17:45:38 +00:00
|
|
|
url 'http://download.dajobe.org/flickcurl/flickcurl-1.25.tar.gz'
|
|
|
|
sha1 '35fc64dd698ad90d0f9d5622b7dfd322d8142082'
|
2012-03-07 05:36:50 +00:00
|
|
|
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2013-03-25 18:35:18 +00:00
|
|
|
test do
|
|
|
|
system "#{bin}/flickcurl", "-h"
|
2012-03-07 05:36:50 +00:00
|
|
|
end
|
|
|
|
end
|