58 lines
1.6 KiB
Ruby
58 lines
1.6 KiB
Ruby
class Syncthing < Formula
|
|
homepage "http://syncthing.net"
|
|
url "https://github.com/syncthing/syncthing.git", :tag => "v0.10.13"
|
|
|
|
bottle do
|
|
sha1 "4cb5aea8a9c063700498a7144d192e085010cc4e" => :yosemite
|
|
sha1 "bf05daef2e9ae5c7de424a3a6f33e28e898f6a31" => :mavericks
|
|
sha1 "a17f9c4942a53ff713455bf60df167060063c021" => :mountain_lion
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on :hg => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = cached_download/".gopath"
|
|
ENV.append_path "PATH", "#{ENV["GOPATH"]}/bin"
|
|
|
|
# FIXME do this without mutating the cache!
|
|
hack_dir = cached_download/".gopath/src/github.com/syncthing"
|
|
rm_rf hack_dir
|
|
mkdir_p hack_dir
|
|
ln_s cached_download, "#{hack_dir}/syncthing"
|
|
ENV["GIT_DIR"] = cached_download/".git"
|
|
|
|
system "./build.sh", "noupgrade"
|
|
bin.install "syncthing"
|
|
end
|
|
|
|
def plist; <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>EnvironmentVariables</key>
|
|
<dict>
|
|
<key>STNORESTART</key>
|
|
<string>yes</string>
|
|
</dict>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/syncthing</string>
|
|
<string>-no-browser</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/syncthing", "-generate", "./"
|
|
end
|
|
end
|