/** * **expect** - Program that can automate interactive applications * * @domain `tcl-lang.org/expect` * @programs `autoexpect`, `autopasswd`, `cryptdir`, `decryptdir`, `dislocate`, ... (+17 more) * @version `5.45.4` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install tcl-lang.org/expect` * @homepage https://core.tcl-lang.org/expect/index * @dependencies `tcl.tk/tcl^8` * @buildDependencies `gnu.org/automake`, `gnu.org/autoconf`, `gnu.org/patch` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.tcllangorgexpect * console.log(pkg.name) // "expect" * console.log(pkg.description) // "Program that can automate interactive applications" * console.log(pkg.programs) // ["autoexpect", "autopasswd", ...] * console.log(pkg.versions[0]) // "5.45.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/tcl-lang-org/expect.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tcllangorgexpectPackage: { /** * The display name of this package. */ name: 'expect'; /** * The canonical domain name for this package. */ domain: 'tcl-lang.org/expect'; /** * Brief description of what this package does. */ description: 'Program that can automate interactive applications'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tcl-lang.org/expect/package.yml'; homepageUrl: 'https://core.tcl-lang.org/expect/index'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tcl-lang.org/expect'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +tcl-lang.org/expect -- $SHELL -i'; launchpadInstallCommand: 'launchpad install tcl-lang.org/expect'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['autoexpect', 'autopasswd', 'cryptdir', 'decryptdir', 'dislocate', 'expect', 'ftp-rfc', 'kibitz', 'lpunlock', 'mkpasswd', 'multixterm', 'passmass', 'rftp', 'rlogin-cwd', 'timed-read', 'timed-run', 'tknewsbiff', 'tkpasswd', 'unbuffer', 'weather', 'xkibitz', 'xpstat']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['tcl.tk/tcl^8']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/automake', 'gnu.org/autoconf', 'gnu.org/patch']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.45.4', '5.45.3', '5.45.0']; aliases: readonly [] }; export type TcllangorgexpectPackage = typeof tcllangorgexpectPackage