/** * **idn** - International domain name library * * @domain `gnu.org/libidn` * @programs `idn` * @version `1.43.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/libidn` * @homepage https://www.gnu.org/software/libidn/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorglibidn * console.log(pkg.name) // "idn" * console.log(pkg.description) // "International domain name library" * console.log(pkg.programs) // ["idn"] * console.log(pkg.versions[0]) // "1.43.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/libidn.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorglibidnPackage: { /** * The display name of this package. */ name: 'idn'; /** * The canonical domain name for this package. */ domain: 'gnu.org/libidn'; /** * Brief description of what this package does. */ description: 'International domain name library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/libidn/package.yml'; homepageUrl: 'https://www.gnu.org/software/libidn/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/libidn'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/libidn -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/libidn'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['idn']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.43.0', '1.42.0', '1.41.0']; aliases: readonly [] }; export type GnuorglibidnPackage = typeof gnuorglibidnPackage