d84ca3034a
Closes Homebrew/homebrew#24235.
20 lines
556 B
Ruby
20 lines
556 B
Ruby
require 'formula'
|
|
|
|
class Gpsd < Formula
|
|
homepage 'http://catb.org/gpsd/'
|
|
url 'http://download.savannah.gnu.org/releases/gpsd/gpsd-3.9.tar.gz'
|
|
sha1 'ff1db303000910d7cb7bfc3a75c97a0800df0f1b'
|
|
|
|
depends_on 'scons' => :build
|
|
depends_on 'libusb' => :optional
|
|
|
|
def patches
|
|
{:p0 => "https://trac.macports.org/export/113474/trunk/dports/net/gpsd/files/string.patch"}
|
|
end
|
|
|
|
def install
|
|
system "scons", "chrpath=False", "python=False", "strip=False", "shared=False",
|
|
"prefix=#{prefix}/"
|
|
system "scons install"
|
|
end
|
|
end
|