homebrew-core/Formula/onedrive.rb

42 lines
1.3 KiB
Ruby

class Onedrive < Formula
desc "Folder synchronization with OneDrive"
homepage "https://github.com/abraunegg/onedrive"
url "https://github.com/abraunegg/onedrive/archive/v2.4.21.tar.gz"
sha256 "c9991970cbb108368d16a4e6aefe66f0d61d66791ab3bbc526bff2237b926c51"
license "GPL-3.0-only"
bottle do
sha256 cellar: :any_skip_relocation, x86_64_linux: "dad89d9dd7d05a6eb9925267322a9d5dcdffc4d70825a6b4295448af688c04d3"
end
depends_on "ldc" => :build
depends_on "pkg-config" => :build
depends_on "curl"
depends_on :linux
depends_on "sqlite"
depends_on "systemd"
def install
system "./configure", *std_configure_args, "--with-systemdsystemunitdir=no"
system "make", "install"
bash_completion.install "contrib/completions/complete.bash" => "onedrive"
zsh_completion.install "contrib/completions/complete.zsh" => "_onedrive"
fish_completion.install "contrib/completions/complete.fish" => "onedrive.fish"
end
service do
run [opt_bin/"onedrive", "--monitor"]
keep_alive true
error_log_path var/"log/onedrive.log"
log_path var/"log/onedrive.log"
working_dir Dir.home
end
test do
assert_match <<~EOS, pipe_output("#{bin}/onedrive 2>&1", "")
Enter the response uri: Invalid response uri entered
Could not initialize the OneDrive API
EOS
end
end