From 879be9db4f7fb285eb42a3f0479eaed457870097 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 13 Aug 2016 17:33:58 +0200 Subject: Initial packaging, based on SQLite 3.14.1 --- build/.gitignore | 1 + build/bootstrap.build | 24 ++++++++++++++++++++++++ build/export.build | 9 +++++++++ build/root.build | 6 ++++++ 4 files changed, 40 insertions(+) create mode 100644 build/.gitignore create mode 100644 build/bootstrap.build create mode 100644 build/export.build create mode 100644 build/root.build (limited to 'build') diff --git a/build/.gitignore b/build/.gitignore new file mode 100644 index 0000000..225c27f --- /dev/null +++ b/build/.gitignore @@ -0,0 +1 @@ +config.build diff --git a/build/bootstrap.build b/build/bootstrap.build new file mode 100644 index 0000000..5bc2a95 --- /dev/null +++ b/build/bootstrap.build @@ -0,0 +1,24 @@ +# file : build/bootstrap.build +# copyright : not copyrighted - public domain + +project = libsqlite3 + +# SQLite releases usually have 3-component versions but once in a while they +# will make a 4-component release for what appears to be important bug fixes +# only. So instead of dragging the fourth component around (and confusing a +# lot of people in the process) we will always have three components and will +# handle an occasional bugfix release with a revision. +# +version = 3.14.1 +revision = 0 + +using build@0.4.0-a1 +using config +using dist +using test +using install + +dist.package = $project-$version + +if ($revision != 0) + dist.package += +$revision diff --git a/build/export.build b/build/export.build new file mode 100644 index 0000000..dc450a5 --- /dev/null +++ b/build/export.build @@ -0,0 +1,9 @@ +# file : build/export.build +# copyright : not copyrighted - public domain + +$out_root/: +{ + include ./ +} + +export $out_root/lib{sqlite3} diff --git a/build/root.build b/build/root.build new file mode 100644 index 0000000..4d7fd53 --- /dev/null +++ b/build/root.build @@ -0,0 +1,6 @@ +# file : build/root.build +# copyright : not copyrighted - public domain + +using c + +test/: install = false # Don't install tests. -- cgit v1.1