homebrew-core/Formula/discodex.rb
2016-04-10 12:37:39 +08:00

21 lines
827 B
Ruby

class Discodex < Formula
desc "Distributed indices for disco"
homepage "https://github.com/discoproject/discodex"
url "https://github.com/discoproject/discodex/archive/fa3fa57aa9fcd9c2bd3b4cd2233dc0d051dafc2b.tar.gz"
bottle do
cellar :any_skip_relocation
sha256 "db8480576b20c59fbc2d7ff4bd23cd3cad3ac70df746604992f28328ebb3eedf" => :yosemite
sha256 "e91346c476a0736873f90dc64b3a23661e1b6807c43cdf57a02b32d951cfeedc" => :mavericks
end
version "2012-01-10" # No tags in the project; using date of last commit as a proxy
sha256 "552346943a7a0b561602f59736b678f4bd43ca505b0e3484699b3770d6aae485"
depends_on "disco"
def install
# The make target only installs python libs; must manually install the rest
system "make", "install", "prefix=#{prefix}"
prefix.install(%w[bin doc])
end
end