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