Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
38 lines (32 sloc) 681 Bytes
require 'formula'
class RecursiveGitDownloadStrategy < GitDownloadStrategy
def clone_args
args = %w{clone}
args << '--recursive'
args << @url << @clone
end
def stage
FileUtils.cp_r Dir[@clone+"{.}"], Dir.pwd
checkout
end
def repo_valid?
false
end
def submodules?
false
end
end
class Glia < Formula
homepage 'https://github.com/ekg/glia'
version '2013-12-29'
url 'https://github.com/ekg/glia.git', :using => RecursiveGitDownloadStrategy, :revision => 'b44eca6dd6e'
depends_on 'cmake' => :build
def install
ENV.deparallelize
system 'make'
bin.install 'glia'
end
test do
system 'glia', '--help'
end
end