/** * **avro** - Apache Avro is a data serialization system. * * @domain `apache.org/avro` * @programs `avroappend`, `avrocat`, `avromod`, `avropipe` * @version `1.12.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install apache.org/avro` * @homepage https://avro.apache.org/ * @dependencies `digip.org/jansson`, `google.github.io/snappy`, `tukaani.org/xz`, ... (+1 more) * @buildDependencies `gnu.org/tar`, `curl.se`, `cmake.org`, ... (+2 more) (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.apacheorgavro * console.log(pkg.name) // "avro" * console.log(pkg.description) // "Apache Avro is a data serialization system." * console.log(pkg.programs) // ["avroappend", "avrocat", ...] * console.log(pkg.versions[0]) // "1.12.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/apache-org/avro.md * @see https://ts-pkgx.netlify.app/usage */ export declare const apacheorgavroPackage: { /** * The display name of this package. */ name: 'avro'; /** * The canonical domain name for this package. */ domain: 'apache.org/avro'; /** * Brief description of what this package does. */ description: 'Apache Avro is a data serialization system.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apache.org/avro/package.yml'; homepageUrl: 'https://avro.apache.org/'; githubUrl: 'https://github.com/apache/avro'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install apache.org/avro'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +apache.org/avro -- $SHELL -i'; launchpadInstallCommand: 'launchpad install apache.org/avro'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['avroappend', 'avrocat', 'avromod', 'avropipe']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['digip.org/jansson', 'google.github.io/snappy', 'tukaani.org/xz', 'zlib.net']; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['gnu.org/tar', 'curl.se', 'cmake.org', 'linux:gnu.org/gcc', 'linux:gnu.org/make']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.12.0', '1.11.3']; aliases: readonly [] }; export type ApacheorgavroPackage = typeof apacheorgavroPackage