/** * **ucl** - pkgx package * * @domain `oberhumer.com/ucl` * @version `1.3.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install oberhumer.com/ucl` * @buildDependencies `gnu.org/automake` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.oberhumercomucl * console.log(pkg.name) // "ucl" * console.log(pkg.versions[0]) // "1.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/oberhumer-com/ucl.md * @see https://ts-pkgx.netlify.app/usage */ export declare const oberhumercomuclPackage: { /** * The display name of this package. */ name: 'ucl'; /** * The canonical domain name for this package. */ domain: 'oberhumer.com/ucl'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/oberhumer.com/ucl/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install oberhumer.com/ucl'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +oberhumer.com/ucl -- $SHELL -i'; launchpadInstallCommand: 'launchpad install oberhumer.com/ucl'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/automake']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.0']; aliases: readonly [] }; export type OberhumercomuclPackage = typeof oberhumercomuclPackage