42 lines
1.3 KiB
Ruby
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.23.tar.gz"
|
|
sha256 "fb57b9683302a53958671d1c74eb9b8f89ac229055647adce093e8a49ad846e0"
|
|
license "GPL-3.0-only"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "00ba2f4255b93fa6d90eab0969aca595385cfad98fad1e125484c1d301bf6814"
|
|
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
|