ts-pkgx
Version:
A library & CLI for managing packages
62 lines • 2.22 kB
TypeScript
/**
* **gnupg.org/libgcrypt** - Cryptographic library based on the code from GnuPG
*
* @domain `gnupg.org/libgcrypt`
* @programs `dumpsexp`, `hmac256`, `libgcrypt-config`, `mpicalc`
* @version `1.11.2` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gnupg.org/libgcrypt`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.gnupgorglibgcrypt
* console.log(pkg.name) // "gnupg.org/libgcrypt"
* console.log(pkg.description) // "Cryptographic library based on the code from GnuPG"
* console.log(pkg.programs) // ["dumpsexp", "hmac256", ...]
* console.log(pkg.versions[0]) // "1.11.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnupg-org/libgcrypt.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gnupgorglibgcryptPackage: {
/**
* The display name of this package.
*/
name: 'gnupg.org/libgcrypt';
/**
* The canonical domain name for this package.
*/
domain: 'gnupg.org/libgcrypt';
/**
* Brief description of what this package does.
*/
description: 'Cryptographic library based on the code from GnuPG';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnupg.org/libgcrypt/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gnupg.org/libgcrypt';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['dumpsexp', 'hmac256', 'libgcrypt-config', 'mpicalc'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.11.2', '1.11.1', '1.11.0', '1.10.3', '1.10.1'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnupg.org/libgcrypt -- $SHELL -i';
launchpadInstallCommand: 'launchpad install gnupg.org/libgcrypt'
};
export type GnupgorglibgcryptPackage = typeof gnupgorglibgcryptPackage