UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.4 kB
/** * **libcap-ng** - Libcap-ng is a library for Linux that makes using posix capabilities easy. * * @domain `people.redhat.com/sgrubb/libcap-ng` * @programs `captest`, `filecap`, `netcap`, `pscap` * @version `0.8.5` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install +people.redhat.com/sgrubb/libcap-ng -- $SHELL -i` * @name `libcap-ng` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.libcapng * // Or access via domain * const samePkg = pantry.peopleredhatcomsgrubblibcapng * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libcap-ng" * console.log(pkg.description) // "Libcap-ng is a library for Linux that makes usi..." * console.log(pkg.programs) // ["captest", "filecap", ...] * console.log(pkg.versions[0]) // "0.8.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/people-redhat-com/sgrubb/libcap-ng.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libcapngPackage: { /** * The display name of this package. */ name: 'libcap-ng'; /** * The canonical domain name for this package. */ domain: 'people.redhat.com/sgrubb/libcap-ng'; /** * Brief description of what this package does. */ description: 'Libcap-ng is a library for Linux that makes using posix capabilities easy.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/people.redhat.com/sgrubb/libcap-ng/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +people.redhat.com/sgrubb/libcap-ng -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['captest', 'filecap', 'netcap', 'pscap']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.8.5', '0.8.4', '0.8.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type LibcapngPackage = typeof libcapngPackage