/** * **gr2fonttest** - Graphite is a "smart font" system developed specifically to handle the complexities of lesser-known languages of the world. * * @domain `graphite.sil.org` * @programs `gr2fonttest` * @version `1.3.14` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install graphite.sil.org` * @homepage https://graphite.sil.org/ * @buildDependencies `cmake.org@^3`, `freetype.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.graphitesilorg * console.log(pkg.name) // "gr2fonttest" * console.log(pkg.description) // "Graphite is a "smart font" system developed spe..." * console.log(pkg.programs) // ["gr2fonttest"] * console.log(pkg.versions[0]) // "1.3.14" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/graphite-sil-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const graphitesilorgPackage: { /** * The display name of this package. */ name: 'gr2fonttest'; /** * The canonical domain name for this package. */ domain: 'graphite.sil.org'; /** * Brief description of what this package does. */ description: 'Graphite is a "smart font" system developed specifically to handle the complexities of lesser-known languages of the world.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/graphite.sil.org/package.yml'; homepageUrl: 'https://graphite.sil.org/'; githubUrl: 'https://github.com/silnrsi/graphite'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install graphite.sil.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +graphite.sil.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install graphite.sil.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gr2fonttest']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3', 'freetype.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.14']; aliases: readonly [] }; export type GraphitesilorgPackage = typeof graphitesilorgPackage