-
-
Save erikh/3993757 to your computer and use it in GitHub Desktop.
wacky dsl idea for ark
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
build "collectd" | |
# this would call the ark provider in the build provider | |
ark do | |
url "http://..." | |
checksum "asdfasdf" | |
end | |
# or, | |
source "foo.tar.gz" | |
configure do # creates defaults to "config.status" | |
flags [ "--enable-python", "--enable-jvm" ] | |
prefix "/opt" | |
end | |
make do | |
env [ "OS=linux" ] | |
creates 'bin/collectd' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment