blob: 960f7f812cd9c6961c58fb0c113128bd9211cc9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Cutter < Formula
homepage 'http://cutter.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/cutter/cutter/1.2.3/cutter-1.2.3.tar.gz'
sha1 '97446319f0a4892433912ab91633b6e0ffa2d09c'
depends_on 'pkg-config' => :build
depends_on 'intltool' => :build
depends_on 'glib'
depends_on 'gettext'
def install
system "./configure", "--prefix=#{prefix}",
"--disable-glibtest",
"--disable-goffice",
"--disable-gstreamer",
"--disable-libsoup"
system "make"
system "make install"
end
end
|