ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.14 kB
TypeScript
/**
* **pkg-config** - package compiler and linker metadata toolkit
*
* @domain `freedesktop.org/pkg-config`
* @programs `pkg-config`
* @version `0.29.2` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install pkg-config`
* @name `pkg-config`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.pkgconfig
* // Or access via domain
* const samePkg = pantry.freedesktoporgpkgconfig
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "pkg-config"
* console.log(pkg.description) // "package compiler and linker metadata toolkit"
* console.log(pkg.programs) // ["pkg-config"]
* console.log(pkg.versions[0]) // "0.29.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/freedesktop-org/pkg-config.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const pkgconfigPackage: {
/**
* The display name of this package.
*/
name: 'pkg-config';
/**
* The canonical domain name for this package.
*/
domain: 'freedesktop.org/pkg-config';
/**
* Brief description of what this package does.
*/
description: 'package compiler and linker metadata toolkit';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freedesktop.org/pkg-config/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install pkg-config';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['pkg-config'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.29.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type PkgconfigPackage = typeof pkgconfigPackage