Created
April 15, 2013 23:43
-
-
Save snikch/5392225 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Cgminer < Formula | |
homepage 'https://github.com/ckolivas/cgminer' | |
url 'https://github.com/ckolivas/cgminer/archive/v2.11.4.zip' | |
head 'https://github.com/ckolivas/cgminer.git', :using => :git | |
md5 'd41d210b03ee16c9ad4cfb439916b30a341dc9b6' | |
depends_on 'autoconf' => :build | |
depends_on 'automake' => :build | |
depends_on 'libtool' => :build | |
depends_on 'yasm' => :build | |
depends_on 'jansson' | |
depends_on 'libusb' | |
depends_on 'curl' | |
def install | |
system './autogen.sh' | |
system './configure --enable-scrypt' | |
system 'make' | |
system 'false' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment