1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Rake task to build website including source dist and binaries.

This commit is contained in:
Stephen Dolan
2013-05-11 14:57:58 +01:00
parent d03149f4df
commit 4a5405e4b8
4 changed files with 6 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ $BINARIES = {
$BINARIES.each do |name, args|
file "../build/#{name}" do |t|
sh "MAKEFLAGS=-j4 ../build/compile #{name} #{args}"
sh "MAKEFLAGS=-j4 ../scripts/crosscompile #{name} #{args}"
end
task :binaries => ["../build/#{name}"]
end
@@ -139,7 +139,7 @@ end
directory "output/download/source"
task :tarball => ["output/download/source"] do
sh "cd ..; make dist"
sh "cd ..; ./configure && make dist && make distclean"
sh "cp ../jq-*.tar.gz output/download/source"
end