summaryrefslogtreecommitdiff
path: root/recipes/sqlite.recipe
blob: c14cc979d77913269b07d5dac333453fc9edceb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python


class Recipe(recipe.Recipe):
    name = 'sqlite'
    version = '3080500'
    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',
    ]