2014-08-14 21:40:23 +00:00
|
|
|
table_name("apps")
|
2015-02-09 01:40:35 +00:00
|
|
|
description("OS X applications installed in known search paths (e.g., /Applications).")
|
2014-08-14 21:40:23 +00:00
|
|
|
schema([
|
2015-02-05 05:47:02 +00:00
|
|
|
Column("name", TEXT, "Name of the Name.app folder"),
|
|
|
|
Column("path", TEXT, "Absolute and full Name.app path"),
|
2015-02-12 00:51:17 +00:00
|
|
|
Column("bundle_executable", TEXT,
|
|
|
|
"Info properties CFBundleExecutable label"),
|
|
|
|
Column("bundle_identifier", TEXT,
|
|
|
|
"Info properties CFBundleIdentifier label"),
|
2015-02-05 05:47:02 +00:00
|
|
|
Column("bundle_name", TEXT, "Info properties CFBundleName label"),
|
2015-02-12 00:51:17 +00:00
|
|
|
Column("bundle_short_version", TEXT,
|
|
|
|
"Info properties CFBundleShortVersionString label"),
|
2015-02-05 05:47:02 +00:00
|
|
|
Column("bundle_version", TEXT, "Info properties CFBundleVersion label"),
|
2015-02-12 00:51:17 +00:00
|
|
|
Column("bundle_package_type", TEXT,
|
|
|
|
"Info properties CFBundlePackageType label"),
|
|
|
|
Column("environment", TEXT, "Application-set environment variables"),
|
|
|
|
Column("element", TEXT, "Does the app identify as a background agent"),
|
2015-02-05 05:47:02 +00:00
|
|
|
Column("compiler", TEXT, "Info properties DTCompiler label"),
|
2015-02-12 00:51:17 +00:00
|
|
|
Column("development_region", TEXT,
|
|
|
|
"Info properties CFBundleDevelopmentRegion label"),
|
2015-02-05 05:47:02 +00:00
|
|
|
Column("display_name", TEXT, "Info properties CFBundleDisplayName label"),
|
|
|
|
Column("info_string", TEXT, "Info properties CFBundleGetInfoString label"),
|
2015-02-12 00:51:17 +00:00
|
|
|
Column("minimum_system_version", TEXT,
|
|
|
|
"Minimum version of OS X required for the app to run"),
|
|
|
|
Column("category", TEXT,
|
|
|
|
"The UTI that categorizes the app for the App Store"),
|
|
|
|
Column("applescript_enabled", TEXT,
|
|
|
|
"Info properties NSAppleScriptEnabled label"),
|
2015-02-05 05:47:02 +00:00
|
|
|
Column("copyright", TEXT, "Info properties NSHumanReadableCopyright label"),
|
2014-08-14 21:40:23 +00:00
|
|
|
])
|
2016-05-18 19:23:52 +00:00
|
|
|
attributes(cacheable=True)
|
2014-10-14 04:58:26 +00:00
|
|
|
implementation("apps@genApps")
|