homebrew-core/Formula/grsync.rb
Tom Schoonjans 8439a564da grsync went quartz
revision bump
audit --strict compliance
2015-06-17 15:58:54 +01:00

32 lines
979 B
Ruby

class Grsync < Formula
desc "GUI for rsync"
homepage "http://www.opbyte.it/grsync/"
url "https://downloads.sourceforge.net/project/grsync/grsync-1.2.5.tar.gz"
sha256 "4f1443154f7c85ca7b0e93d5fea438e2709776005e7cfc97da89f4899b1c12e5"
revision 1
bottle do
sha1 "2f246934c2877a3afc7259676f24657f100e825c" => :mavericks
sha1 "22adc2e44c27055e71376a3d06e13a70be125a8f" => :mountain_lion
sha1 "a2537bc8f5ff3797773d89ff6965d1338fb4074b" => :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-unity",
"--prefix=#{prefix}"
system "make", "install"
end
test do
# running the executable always produces the GUI, which is undesirable for the test
# so we'll just check if the executable exists
assert (bin/"grsync").exist?
end
end