23 lines
785 B
Ruby
23 lines
785 B
Ruby
class Wallpaper < Formula
|
|
desc "Get or set the desktop wallpaper"
|
|
homepage "https://github.com/sindresorhus/osx-wallpaper"
|
|
url "https://github.com/sindresorhus/osx-wallpaper/archive/1.1.1.tar.gz"
|
|
sha256 "a1797eac72da83f947a2a1f12b7b85484607d5a218c8254d1ed5573e5fab92bb"
|
|
head "https://github.com/sindresorhus/osx-wallpaper.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "152f1f07305a06dd48445ed3f2c76ea5200cffc474ee02e2aad5141d59979f84" => :el_capitan
|
|
sha256 "6f838047f55e449e44ee3d46ac7d4911dfbc8f5c7d38210f623ddaceaf4d9abe" => :yosemite
|
|
sha256 "e0bef9ac123afc7b6deecc01680fd03787431a5c7d034082ce9bf3b54a884a92" => :mavericks
|
|
end
|
|
|
|
def install
|
|
system "./build"
|
|
bin.install "wallpaper"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/wallpaper"
|
|
end
|
|
end
|