geany: migrate from x11
This commit is contained in:
parent
5017b21cff
commit
a34281b729
1 changed files with 91 additions and 0 deletions
91
Formula/geany.rb
Normal file
91
Formula/geany.rb
Normal file
|
@ -0,0 +1,91 @@
|
|||
class Geany < Formula
|
||||
desc "A basic text editor with IDE support"
|
||||
homepage "http://geany.org/"
|
||||
url "http://download.geany.org/geany-1.24.1.tar.gz"
|
||||
sha256 "8aa5dbf94b5252fce2ba504b47addb047a076fe44f11a08be45dc59e7ac318ba"
|
||||
revision 1
|
||||
|
||||
bottle do
|
||||
sha256 "f58bd5addace94aae2046a41dbdaae7c26d0cdc4766eb27f53adbf708b3e3858" => :yosemite
|
||||
sha256 "6b42d99318763e96e97cc368802994f13c2ba6eb2ddf2553d67d8ce42136cdee" => :mavericks
|
||||
sha256 "1c06e1f0f6930e3c2aa4d9a9ec30e209b42750452bd8706462e8ad7193cda71e" => :mountain_lion
|
||||
end
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on "intltool" => :build
|
||||
depends_on "gettext"
|
||||
depends_on "gtk+"
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-dependency-tracking",
|
||||
"--disable-silent-rules",
|
||||
"--prefix=#{prefix}"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
# main executable test (GUI)
|
||||
system "#{bin}/geany", "--version"
|
||||
# API test
|
||||
(testpath/"test.c").write <<-EOS.undent
|
||||
#include <geanyplugin.h>
|
||||
PLUGIN_SET_INFO("HelloWorld", "Just another tool to say hello world", "1.0", "Joe Doe <joe.doe@example.org>");
|
||||
int main(int argc, char *argv[]) {
|
||||
return 0;
|
||||
}
|
||||
EOS
|
||||
atk = Formula["atk"]
|
||||
cairo = Formula["cairo"]
|
||||
fontconfig = Formula["fontconfig"]
|
||||
freetype = Formula["freetype"]
|
||||
gdk_pixbuf = Formula["gdk-pixbuf"]
|
||||
gettext = Formula["gettext"]
|
||||
glib = Formula["glib"]
|
||||
gtkx = Formula["gtk+"]
|
||||
libpng = Formula["libpng"]
|
||||
pango = Formula["pango"]
|
||||
pixman = Formula["pixman"]
|
||||
flags = (ENV.cflags || "").split + (ENV.cppflags || "").split + (ENV.ldflags || "").split
|
||||
flags += %W[
|
||||
-I#{atk.opt_include}/atk-1.0
|
||||
-I#{cairo.opt_include}/cairo
|
||||
-I#{fontconfig.opt_include}
|
||||
-I#{freetype.opt_include}/freetype2
|
||||
-I#{gdk_pixbuf.opt_include}/gdk-pixbuf-2.0
|
||||
-I#{gettext.opt_include}
|
||||
-I#{glib.opt_include}/glib-2.0
|
||||
-I#{glib.opt_lib}/glib-2.0/include
|
||||
-I#{gtkx.opt_include}/gtk-2.0
|
||||
-I#{gtkx.opt_lib}/gtk-2.0/include
|
||||
-I#{include}/geany
|
||||
-I#{include}/geany/scintilla
|
||||
-I#{include}/geany/tagmanager
|
||||
-I#{libpng.opt_include}/libpng16
|
||||
-I#{pango.opt_include}/pango-1.0
|
||||
-I#{pixman.opt_include}/pixman-1
|
||||
-DGTK
|
||||
-D_REENTRANT
|
||||
-L#{atk.opt_lib}
|
||||
-L#{cairo.opt_lib}
|
||||
-L#{gdk_pixbuf.opt_lib}
|
||||
-L#{gettext.opt_lib}
|
||||
-L#{glib.opt_lib}
|
||||
-L#{gtkx.opt_lib}
|
||||
-L#{lib}
|
||||
-L#{pango.opt_lib}
|
||||
-latk-1.0
|
||||
-lcairo
|
||||
-lgdk-quartz-2.0
|
||||
-lgdk_pixbuf-2.0
|
||||
-lgio-2.0
|
||||
-lglib-2.0
|
||||
-lgobject-2.0
|
||||
-lgtk-quartz-2.0
|
||||
-lintl
|
||||
-lpango-1.0
|
||||
-lpangocairo-1.0
|
||||
]
|
||||
system ENV.cc, "test.c", "-o", "test", *flags
|
||||
system "./test"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue