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

4
.gitignore vendored
View File

@ -1,7 +1,6 @@
*.o
*~
build
jq
jq.1
@ -22,4 +21,5 @@ config.log
config.status
autom4te.cache
config.h
Makefile
Makefile
jq-*.tar.gz

1
build/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*

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

View File

@ -11,7 +11,7 @@
# e.g. $0 win32 --host=i686-w64-mingw32
set -e
cd `dirname "$0"`
cd `dirname "$0"`/../build
plat="$1"
[ -z "$plat" ] && exit 1