blob: 2a5dec1a3c47b08a10359331876cd25fc73a3ad3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 install
system "scons", "chrpath=False", "python=False", "strip=False", "shared=False",
"prefix=#{prefix}/"
system "scons install"
end
end
|