7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
16 lines
No EOL
365 B
Ruby
16 lines
No EOL
365 B
Ruby
require 'formula'
|
|
|
|
class Orderly <Formula
|
|
url 'http://github.com/lloyd/orderly/tarball/cdf140170b987a27826ba146b31890b0ae1506bd'
|
|
homepage 'http://orderly-json.org/'
|
|
md5 'b416de7d7e90088a7c842cc26ae393ec'
|
|
version '0.0.1'
|
|
|
|
depends_on 'yajl'
|
|
depends_on 'cmake'
|
|
|
|
def install
|
|
system "cmake . #{std_cmake_parameters}"
|
|
system "make install"
|
|
end
|
|
end |