d87063d32f
These dependencies are automatically detected from the URL, so declaring them is redundant. If these formulae ever get a head or devel spec, then explicit xz deps would need to be re-scoped appropriately. Thus we should remove them.
17 lines
494 B
Ruby
17 lines
494 B
Ruby
require 'formula'
|
|
|
|
class Gtksourceviewmm3 < Formula
|
|
homepage 'https://developer.gnome.org/gtksourceviewmm/'
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/gtksourceviewmm/3.2/gtksourceviewmm-3.2.0.tar.xz'
|
|
sha1 'cac8d2fdde7b862bdb5eb12c6b8998a29e3fcf95'
|
|
|
|
depends_on 'gtksourceview3'
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'gtkmm3'
|
|
depends_on :x11
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|