/** * **openvpn** - pkgx package * * @domain `openvpn.net` * @programs `openvpn` * @version `2.6.17` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install openvpn.net` * @dependencies `lz4.org^1.9`, `oberhumer.com/lzo^2.10`, `openssl.org^1.1`, ... (+2 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openvpnnet * console.log(pkg.name) // "openvpn" * console.log(pkg.programs) // ["openvpn"] * console.log(pkg.versions[0]) // "2.6.17" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openvpn-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openvpnnetPackage: { /** * The display name of this package. */ name: 'openvpn'; /** * The canonical domain name for this package. */ domain: 'openvpn.net'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openvpn.net/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install openvpn.net'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openvpn.net -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openvpn.net'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['openvpn']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['lz4.org^1.9', 'oberhumer.com/lzo^2.10', 'openssl.org^1.1', 'linux:sourceforge.net/net-tools', 'linux:github.com/thom311/libnl']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.6.17', '2.6.16', '2.6.15', '2.6.14', '2.6.13', '2.6.12', '2.6.11', '2.6.10', '2.6.9', '2.6.8', '2.6.7', '2.6.6', '2.6.5', '2.6.4', '2.5.10']; aliases: readonly [] }; export type OpenvpnnetPackage = typeof openvpnnetPackage