21 lines
753 B
Ruby
21 lines
753 B
Ruby
class Gpsd < Formula
|
|
desc "Global Positioning System (GPS) daemon"
|
|
homepage "http://catb.org/gpsd/"
|
|
url "http://download.savannah.gnu.org/releases/gpsd/gpsd-3.15.tar.gz"
|
|
sha256 "81c89e271ae112313e68655ab30d227bc38fe7841ffbff0f1860b12a9d7696ea"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "3217799db940813d04dafecb52efd5b1a00ff8afd8245979728b82a9227c7269" => :el_capitan
|
|
sha256 "ac0aa5f2d768a113587eb7cb5ce07bd268aeaaecde5fc60f39330bfdff54999d" => :yosemite
|
|
sha256 "a2905cf71c569793fafb1d5c5000bd25851499d66c3b4ebea1ec2b241800834b" => :mavericks
|
|
end
|
|
|
|
depends_on "scons" => :build
|
|
depends_on "libusb" => :optional
|
|
|
|
def install
|
|
scons "chrpath=False", "python=False", "strip=False", "prefix=#{prefix}/"
|
|
scons "install"
|
|
end
|
|
end
|