Created
April 15, 2019 10:18
-
-
Save vmule/36476cf13ad6a7feb7cd817cfe53efc7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Ldc2 < Formula | |
| version '20130608' | |
| url 'https://bitbucket.org/clems71/homebrew-ldc2/downloads/ldc2-2013-06-08.zip' | |
| homepage 'https://github.com/ldc-developers/ldc' | |
| sha1 '4352ee0256f3be9926d8d0497344b768f51ce22a' | |
| depends_on 'cmake' => :build | |
| depends_on 'llvm' | |
| depends_on 'libconfig' | |
| def install | |
| system "cmake", ".", *std_cmake_args | |
| system "make -j4 install" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment