diff options
| author | hryk | 2010-06-15 15:06:52 +0900 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-11 11:58:52 -0700 |
| commit | 8769d13817832e418ad283e3504eaebe551a6509 (patch) | |
| tree | 7b63f6bb1d8668d0a2dda5c9a9d435fdd8e5f09e /Library/Formula | |
| parent | b6197253827f68d8b558b176e459a4838eb6be38 (diff) | |
| download | homebrew-8769d13817832e418ad283e3504eaebe551a6509.tar.bz2 | |
pangomm : c++ interface for Pango
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/pangomm.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/pangomm.rb b/Library/Formula/pangomm.rb new file mode 100644 index 000000000..a2b3a5096 --- /dev/null +++ b/Library/Formula/pangomm.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Pangomm <Formula + url 'http://ftp.gnome.org/pub/GNOME/sources/pangomm/2.26/pangomm-2.26.2.tar.gz' + homepage 'http://www.pango.org/' + md5 '2ccc1a5e271d90d4d1a414e0e234329a' + + depends_on 'pkg-config' + depends_on 'pango' + depends_on 'glibmm' + depends_on 'cairomm' + + def install + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
