homebrew-core/Formula/gammu.rb
2015-10-17 10:14:45 +02:00

39 lines
1.3 KiB
Ruby

class Gammu < Formula
desc "Command-line utility to control a phone"
homepage "http://wammu.eu/gammu/"
head "https://github.com/gammu/gammu.git"
stable do
url "https://dl.cihar.com/gammu/releases/gammu-1.36.5.tar.xz"
mirror "https://mirrors.kernel.org/debian/pool/main/g/gammu/gammu_1.36.5.orig.tar.xz"
sha256 "42e626f8f8b97c7a0afc5547a6056aa061725e8e3ace91dbcf9e83816a70ab86"
# To customize bash completion location; remove in next stable release
patch do
url "https://github.com/gammu/gammu/commit/470c53aa640f5c53671ae22e06a7159f39774042.diff"
sha256 "ed3a402f36a8314a1a3df187827988ed8f5c9a5638397fe684ed4f0ed5ffbf44"
end
end
bottle do
sha256 "3326021179a308021ef03127af4b9d051530686d1f5dc3e84c3640b4b82542d7" => :yosemite
sha256 "25a1340421feced88e1bb8ae810a26dfd7f2bf4a7f30c48d148874208cd8875a" => :mavericks
sha256 "3509f63360d9e7417cdf692c7296c1b386e4cba78d758ad5b56ad6e0be0c450f" => :mountain_lion
end
depends_on "cmake" => :build
depends_on "glib" => :recommended
depends_on "gettext" => :optional
depends_on "openssl"
def install
mkdir "build" do
system "cmake", "..", "-DBASH_COMPLETION_COMPLETIONSDIR:PATH=#{bash_completion}", *std_cmake_args
system "make", "install"
end
end
test do
system bin/"gammu", "--help"
end
end