ts-pkgx
Version:
A library & CLI for managing packages
70 lines • 2.09 kB
TypeScript
/**
* **libtool** - pkgx package
*
* @domain `gnu.org/libtool`
* @programs `libtool`, `libtoolize`
* @version `2.5.4` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install libtool`
* @name `libtool`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.libtool
* // Or access via domain
* const samePkg = pantry.gnuorglibtool
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "libtool"
* console.log(pkg.programs) // ["libtool", "libtoolize"]
* console.log(pkg.versions[0]) // "2.5.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnu-org/libtool.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const libtoolPackage: {
/**
* The display name of this package.
*/
name: 'libtool';
/**
* The canonical domain name for this package.
*/
domain: 'gnu.org/libtool';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/libtool/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install libtool';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['libtool', 'libtoolize'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.5.4', '2.5.3', '2.4.7'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/libtool -- $SHELL -i';
launchpadInstallCommand: 'launchpad install libtool'
};
export type LibtoolPackage = typeof libtoolPackage