ts-pkgx
Version:
A library & CLI for managing packages
65 lines • 2.49 kB
TypeScript
/**
* **fontconfig** - XML-based font configuration API for X Windows
*
* @domain `freedesktop.org/fontconfig`
* @programs `fc-cache`, `fc-cat`, `fc-conflist`, `fc-list`, `fc-match`, ... (+4 more)
* @version `2.16.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +freedesktop.org/fontconfig -- $SHELL -i`
* @dependencies `sourceware.org/bzip2@1`, `freetype.org@2`, `zlib.net@1`, ... (+2 more)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.freedesktoporgfontconfig
* console.log(pkg.name) // "fontconfig"
* console.log(pkg.description) // "XML-based font configuration API for X Windows"
* console.log(pkg.programs) // ["fc-cache", "fc-cat", ...]
* console.log(pkg.versions[0]) // "2.16.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/freedesktop-org/fontconfig.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const freedesktoporgfontconfigPackage: {
/**
* The display name of this package.
*/
name: 'fontconfig';
/**
* The canonical domain name for this package.
*/
domain: 'freedesktop.org/fontconfig';
/**
* Brief description of what this package does.
*/
description: 'XML-based font configuration API for X Windows';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freedesktop.org/fontconfig/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +freedesktop.org/fontconfig -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['fc-cache', 'fc-cat', 'fc-conflist', 'fc-list', 'fc-match', 'fc-pattern', 'fc-query', 'fc-scan', 'fc-validate'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['sourceware.org/bzip2@1', 'freetype.org@2', 'zlib.net@1', 'gnome.org/libxml2@2', 'libexpat.github.io@2'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.16.0', '2.15.0', '2.14.1', '2.14.0'];
aliases: readonly []
};
export type FreedesktoporgfontconfigPackage = typeof freedesktoporgfontconfigPackage