diff options
author | Lei Maohui <leimaohui@fujitsu.com> | 2023-01-09 13:32:42 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-01-09 08:56:42 -0800 |
commit | dc2dd0a80eecf6aa2e659d59d405a88e104c144c (patch) | |
tree | d87bc126d2c95b39437262dbd8da79e87638dd5b | |
parent | cd1388161143e9cbc3eb7d8c2edbc3b751728e75 (diff) | |
download | meta-openembedded-dc2dd0a80eecf6aa2e659d59d405a88e104c144c.tar.gz |
biodbc: Added a new recipe.
biodbc will provide you with everything you need to \
develop ODBC-compliant applications under Unix without having to pay \
royalties to other parties.
Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/libiodbc/libiodbc_3.52.15.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libiodbc/libiodbc_3.52.15.bb b/meta-oe/recipes-support/libiodbc/libiodbc_3.52.15.bb new file mode 100644 index 0000000000..57227375ec --- /dev/null +++ b/meta-oe/recipes-support/libiodbc/libiodbc_3.52.15.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SUMMARY = "iODBC driver manager maintained by OpenLink Software." | ||
2 | |||
3 | DESCRIPTION = "This kit will provide you with everything you need to \ | ||
4 | develop ODBC-compliant applications under Unix without having to pay \ | ||
5 | royalties to other parties. \ | ||
6 | " | ||
7 | |||
8 | HOMEPAGE = "http://www.iodbc.org/" | ||
9 | |||
10 | LICENSE = "LGPL-2.0-only | BSD-2-Clause" | ||
11 | LIC_FILES_CHKSUM = "file://LICENSE.LGPL;md5=8c0138a8701f0e1282f5c8b2c7d39114 \ | ||
12 | file://LICENSE.BSD;md5=ff3a66a194e500df485da930da7f2c62 \ | ||
13 | " | ||
14 | |||
15 | SRC_URI = "https://github.com/openlink/iODBC/archive/refs/tags/v3.52.15.tar.gz \ | ||
16 | " | ||
17 | S = "${WORKDIR}/iODBC-${PV}" | ||
18 | SRC_URI[sha256sum] = "f6b376b6dffb4807343d6d612ed527089f99869ed91bab0bbbb47fdea5ed6ace" | ||
19 | |||
20 | inherit autotools | ||
21 | |||
22 | EXTRA_OECONF += " --prefix=/usr/local \ | ||
23 | --with-iodbc-inidir=/etc \ | ||
24 | --enable-odbc3 \ | ||
25 | --enable-pthreads \ | ||
26 | --disable-libodbc \ | ||
27 | --disable-static \ | ||
28 | " | ||