aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Bitsch2011-01-01 18:42:36 +0100
committerMike McQuaid2011-01-01 18:25:12 +0000
commit082429f187ea5ad1e66f9015c25d2da2a31f2a4b (patch)
tree4b2499cd92d25bb9ad17d4384744ff90f7f98752
parent6993c91253b3472158ba152e069a341eb62efbca (diff)
downloadhomebrew-082429f187ea5ad1e66f9015c25d2da2a31f2a4b.tar.bz2
Add formula for gtksourceview
Gtksourceview is a library which extends gtk+ with a multiline text editing control supporting source code editor capabilities. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
-rw-r--r--Library/Formula/gtksourceview.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/gtksourceview.rb b/Library/Formula/gtksourceview.rb
new file mode 100644
index 000000000..1b4d267da
--- /dev/null
+++ b/Library/Formula/gtksourceview.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Gtksourceview <Formula
+ url 'http://ftp.gnome.org/pub/GNOME/sources/gtksourceview/2.11/gtksourceview-2.11.2.tar.gz'
+ homepage 'http://projects.gnome.org/gtksourceview/'
+ md5 '7c4bbdc1d1628932362b4f222e80afd4'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'intltool'
+ depends_on 'gettext'
+ depends_on 'gtk+'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end