Signed-off-by: geraldo netto <[email protected]> --- ruby-publify/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/ruby-publify/Makefile b/ruby-publify/Makefile index 9f9774c..ed29751 100644 --- a/ruby-publify/Makefile +++ b/ruby-publify/Makefile @@ -5,18 +5,21 @@ PUBLIFY_VER=v8.1.1 JSON_VER=1.8.2 sqlite-autoconf-3080500.tar.gz: - wget "http://www.sqlite.org/2014/sqlite-autoconf-3080500.tar.gz" + wget -c "http://www.sqlite.org/2014/sqlite-autoconf-3080500.tar.gz" sqlite-autoconf-3080500: sqlite-autoconf-3080500.tar.gz tar xvf sqlite-autoconf-3080500.tar.gz + sqlite-autoconf-3080500/.libs/libsqlite3.so.0.8.6: sqlite-autoconf-3080500 cd sqlite-autoconf-3080500 && ./configure && make CFLAGS="-fPIC -DHAVE_MREMAP=0" - + ROOTFS/libsqlite3.so.0: sqlite-autoconf-3080500/.libs/libsqlite3.so.0.8.6 cp sqlite-autoconf-3080500/.libs/libsqlite3.so.0.8.6 ROOTFS/libsqlite3.so.0 + publify: git clone -b ${PUBLIFY_VER} --depth 1 https://github.com/publify/publify.git rm publify/config/environments/production.rb + ROOTFS/publify: publify mkdir -p ROOTFS/publify cd publify && git archive ${PUBLIFY_VER} | tar -x -C ../ROOTFS/publify @@ -36,6 +39,7 @@ ROOTFS/publify/vendor/bundle: ROOTFS/publify ROOTFS/publify/bin/rails cd ROOTFS/publify && bundle exec rake db:migrate cd ROOTFS/publify && bundle exec rake db:seed cd ROOTFS/publify && bundle exec rake assets:precompile + ROOTFS: ROOTFS/publify/vendor/bundle ROOTFS/libsqlite3.so.0 usr.manifest: -- 2.7.4 -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
