apk-tools/src/meson.build

176 lines
2.7 KiB
Meson

libapk_so_version = '2.99.0'
libapk_src = [
'adb.c',
'adb_trust.c',
'apk_adb.c',
'atom.c',
'blob.c',
'commit.c',
'common.c',
'database.c',
'hash.c',
'io.c',
'io_archive.c',
'io_url.c',
'io_gunzip.c',
'package.c',
'print.c',
'solver.c',
'version.c',
]
libapk_headers = [
'apk_applet.h',
'apk_atom.h',
'apk_archive.h',
'apk_blob.h',
'apk_database.h',
'apk_defines.h',
'apk_hash.h',
'apk_io.h',
'apk_openssl.h',
'apk_package.h',
'apk_print.h',
'apk_provider_data.h',
'apk_solver_data.h',
'apk_solver.h',
'apk_version.h',
]
apk_src = [
'apk.c',
'app_adbdump.c',
'app_adbsign.c',
'app_add.c',
'app_audit.c',
'app_cache.c',
'app_convdb.c',
'app_convndx.c',
'app_del.c',
'app_dot.c',
'app_fetch.c',
'app_fix.c',
'app_index.c',
'app_info.c',
'app_list.c',
'app_manifest.c',
'app_mkndx.c',
'app_policy.c',
'app_update.c',
'app_upgrade.c',
'app_search.c',
'app_stats.c',
'app_verify.c',
'app_version.c',
'app_vertest.c',
'help.c',
]
if lua_bin.found()
genhelp_script = find_program('./genhelp.lua')
generated_help = custom_target(
'help.h',
capture: true,
output: 'help.h',
input: man_files,
command: [genhelp_script, '@INPUT@'],
)
else
generated_help = custom_target(
'help.h',
capture: true,
output: 'help.h',
command: ['echo', '#define NO_HELP'],
)
endif
apk_src += [ generated_help ]
apk_cargs = [
'-DAPK_VERSION="' + meson.project_version() + '"',
'-D_ATFILE_SOURCE',
]
libapk_shared = shared_library(
'apk',
libapk_src,
version: libapk_so_version,
install: not subproject,
dependencies: [
libfetch_dep,
shared_deps,
],
c_args: apk_cargs,
)
libapk_static = static_library(
'apk',
libapk_src,
install: not subproject,
dependencies: [
libfetch_dep,
static_deps,
],
c_args: [apk_cargs, '-DOPENSSL_NO_ENGINE'],
)
libapk_dep = declare_dependency(
link_with: libapk_shared,
)
if not subproject
pkgc.generate(
libapk_shared,
name: 'apk',
version: libapk_so_version,
)
install_headers(
libapk_headers,
subdir: 'apk',
)
endif
if(lua_dep.found())
luaapk_src = [
'lua-apk.c',
]
libluaapk = library(
'luaapk',
luaapk_src,
dependencies: [lua_dep, libapk_dep],
install: true,
install_dir: lua_dep.get_pkgconfig_variable('libdir'),
c_args: apk_cargs,
)
endif
apk_exe = executable(
'apk',
apk_src,
install: not subproject,
dependencies: [
libapk_dep,
shared_deps,
libfetch_dep.partial_dependency(includes: true),
],
c_args: apk_cargs,
)
if get_option('static_apk')
apk_static_exe = executable(
'apk.static',
apk_src,
install: not subproject,
dependencies: [
static_deps,
libfetch_dep.partial_dependency(includes: true),
],
link_with: libapk_static,
c_args: [apk_cargs, '-DOPENSSL_NO_ENGINE'],
link_args: '-static',
)
endif