95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
15 lines
593 B
Ruby
15 lines
593 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"
|
|
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
|