/** * **OpenSSL** - TLS/SSL and crypto library with QUIC APIs * * @domain `openssl.org` * @programs `openssl`, `c_rehash` * @version `3.6.0` (38 versions available) * @versions From newest version to oldest. * * @install `launchpad install openssl.org` * @homepage https://quictls.github.io/openssl * @dependencies `curl.se/ca-certs` * @buildDependencies `perl.org@5` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.opensslorg * console.log(pkg.name) // "OpenSSL" * console.log(pkg.description) // "TLS/SSL and crypto library with QUIC APIs" * console.log(pkg.programs) // ["openssl", "c_rehash"] * console.log(pkg.versions[0]) // "3.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openssl-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const opensslorgPackage: { /** * The display name of this package. */ name: 'OpenSSL'; /** * The canonical domain name for this package. */ domain: 'openssl.org'; /** * Brief description of what this package does. */ description: 'TLS/SSL and crypto library with QUIC APIs'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openssl.org/package.yml'; homepageUrl: 'https://quictls.github.io/openssl'; githubUrl: 'https://github.com/quictls/openssl'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install openssl.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openssl.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openssl.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['openssl', 'c_rehash']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['curl.se/ca-certs']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['perl.org@5']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.6.0', '3.5.4', '3.5.3', '3.5.2', '3.5.0', '3.4.3', '3.4.0', '3.3.5', '3.3.2', '3.3.1', '3.3.0', '3.2.6', '3.2.3', '3.2.2', '3.2.1', '3.2.0', '3.1.7', '3.1.6', '3.1.5', '3.1.4', '3.1.3', '3.1.2', '3.1.1', '3.1.0', '3.0.18', '3.0.15', '3.0.14', '3.0.13', '3.0.12', '3.0.11', '3.0.10', '3.0.9', '3.0.0', '1.1.1w', '1.1.1v', '1.1.1u', '1.1.1t', '1.1.1s']; aliases: readonly [] }; export type OpensslorgPackage = typeof opensslorgPackage