diff options
Diffstat (limited to 'recipes/sqlite.recipe')
-rw-r--r-- | recipes/sqlite.recipe | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/sqlite.recipe b/recipes/sqlite.recipe new file mode 100644 index 00000000..b6395adb --- /dev/null +++ b/recipes/sqlite.recipe @@ -0,0 +1,25 @@ +# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python + + +class Recipe(recipe.Recipe): + name = 'sqlite' + version = '3080402' + stype = SourceType.TARBALL + srcdir = '../sqlite-autoconf-%s' % version + url = 'https://sqlite.org/2014/sqlite-autoconf-%(version)s.tar.gz' + # either LGPLv2.1 or MPLv1.1 + licenses = License.PUBLIC_DOMAIN + deps = [] + + files_devel = [ + 'lib/pkgconfig/sqlite3.pc', 'lib/libsqlite3.la', + 'lib/libsqlite3.a', 'include/*.h', + ] + + files_libs = [ + 'libsqlite3', + ] + + files_bins = [ + 'sqlite3', + ] |