homebrew-core/Formula/harbour.rb
Viktor Szakáts 7ec2f16567 harbour: modernize, extend test, format test
Closes Homebrew/homebrew#38032.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2015-03-28 23:43:26 -07:00

70 lines
1.7 KiB
Ruby

class Harbour < Formula
homepage "https://harbour.github.io"
url "https://downloads.sourceforge.net/harbour-project/source/3.0.0/harbour-3.0.0.tar.bz2"
sha256 "4e99c0c96c681b40c7e586be18523e33db24baea68eb4e394989a3b7a6b5eaad"
bottle do
cellar :any
sha1 "ff777eb55a1f944d7dd1bcc4e07506996e60af0e" => :mavericks
sha1 "bfc3a646867b5176dad976c4e0f6c40c7a4a7417" => :mountain_lion
sha1 "0127b7daaaae6393fd69fff8e7e21a9ebae7c18d" => :lion
end
head "https://github.com/harbour/core.git"
depends_on "pcre"
depends_on :x11 => :recommended
# Missing a header that was deprecated by libcurl @ version 7.12.0 and
# deleted sometime after Harbour 3.0.0 release.
stable do
patch :DATA
end
def install
ENV["HB_INSTALL_PREFIX"] = prefix
ENV["HB_WITH_X11"] = "no" if build.without? "x11"
ENV.deparallelize
system "make", "install"
rm Dir[bin/"hbmk2.*.hbl"]
rm bin/"contrib.hbr" if build.head?
rm bin/"harbour.ucf" if build.head?
end
test do
(testpath/"hello.prg").write <<-EOS.undent
procedure Main()
OutStd( ;
"Hello, world!" + hb_eol() + ;
OS() + hb_eol() + ;
Version() + hb_eol() )
return
EOS
assert_match /Hello, world!/, shell_output("#{bin}/hbmk2 hello.prg -run")
end
end
__END__
diff --git a/contrib/hbcurl/core.c b/contrib/hbcurl/core.c
index 00caaa8..53618ed 100644
--- a/contrib/hbcurl/core.c
+++ b/contrib/hbcurl/core.c
@@ -53,8 +53,12 @@
*/
#include <curl/curl.h>
-#include <curl/types.h>
-#include <curl/easy.h>
+#if LIBCURL_VERSION_NUM < 0x070A03
+# include <curl/easy.h>
+#endif
+#if LIBCURL_VERSION_NUM < 0x070C00
+# include <curl/types.h>
+#endif
#include "hbapi.h"
#include "hbapiitm.h"