/** * **upx** - UPX - the Ultimate Packer for eXecutables * * @domain `upx.github.io` * @programs `upx` * @version `5.0.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install upx.github.io` * @homepage https://upx.github.io/ * @dependencies `zlib.net` * @buildDependencies `cmake.org`, `oberhumer.com/ucl` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.upxgithubio * console.log(pkg.name) // "upx" * console.log(pkg.description) // "UPX - the Ultimate Packer for eXecutables" * console.log(pkg.programs) // ["upx"] * console.log(pkg.versions[0]) // "5.0.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/upx-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const upxgithubioPackage: { /** * The display name of this package. */ name: 'upx'; /** * The canonical domain name for this package. */ domain: 'upx.github.io'; /** * Brief description of what this package does. */ description: 'UPX - the Ultimate Packer for eXecutables'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/upx.github.io/package.yml'; homepageUrl: 'https://upx.github.io/'; githubUrl: 'https://github.com/upx/upx'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install upx.github.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +upx.github.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install upx.github.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['upx']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['zlib.net']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org', 'oberhumer.com/ucl']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.0.2', '5.0.1', '5.0.0', '4.2.4']; aliases: readonly [] }; export type UpxgithubioPackage = typeof upxgithubioPackage