ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.18 kB
TypeScript
/**
* **sf.net/libtirpc** - pkgx package
*
* @domain `sourceforge.net/libtirpc`
* @version `1.3.6` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sourceforge.net/libtirpc`
* @name `sf.net/libtirpc`
* @dependencies `kerberos.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.sfnetlibtirpc
* // Or access via domain
* const samePkg = pantry.sourceforgenetlibtirpc
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sf.net/libtirpc"
* console.log(pkg.versions[0]) // "1.3.6" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/sourceforge-net/libtirpc.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sfnetlibtirpcPackage: {
/**
* The display name of this package.
*/
name: 'sf.net/libtirpc';
/**
* The canonical domain name for this package.
*/
domain: 'sourceforge.net/libtirpc';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sourceforge.net/libtirpc/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install sourceforge.net/libtirpc';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['kerberos.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.3.6', '1.3.5', '1.3.4', '1.3.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +sourceforge.net/libtirpc -- $SHELL -i';
launchpadInstallCommand: 'launchpad install sourceforge.net/libtirpc'
};
export type SfnetlibtirpcPackage = typeof sfnetlibtirpcPackage