/** * **cvt** - VESA CVT standard timing modelines generator * * @domain `x.org/libcvt` * @programs `cvt` * @version `0.1.3` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install x.org/libcvt` * @homepage https://www.x.org * @dependencies `x.org/x11^1`, `x.org/exts`, `x.org/protocol` * @buildDependencies `mesonbuild.com` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xorglibcvt * console.log(pkg.name) // "cvt" * console.log(pkg.description) // "VESA CVT standard timing modelines generator" * console.log(pkg.programs) // ["cvt"] * console.log(pkg.versions[0]) // "0.1.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/x-org/libcvt.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xorglibcvtPackage: { /** * The display name of this package. */ name: 'cvt'; /** * The canonical domain name for this package. */ domain: 'x.org/libcvt'; /** * Brief description of what this package does. */ description: 'VESA CVT standard timing modelines generator'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/libcvt/package.yml'; homepageUrl: 'https://www.x.org'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install x.org/libcvt'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +x.org/libcvt -- $SHELL -i'; launchpadInstallCommand: 'launchpad install x.org/libcvt'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cvt']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['x.org/x11^1', 'x.org/exts', 'x.org/protocol']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['mesonbuild.com']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.3', '0.1.2']; aliases: readonly [] }; export type XorglibcvtPackage = typeof xorglibcvtPackage