/** * **libgcrypt** - Cryptographic library based on the code from GnuPG * * @domain `gnupg.org/libgcrypt` * @programs `dumpsexp`, `hmac256`, `libgcrypt-config`, `mpicalc` * @version `1.11.2` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnupg.org/libgcrypt` * @homepage https://gnupg.org/related_software/libgcrypt/ * @buildDependencies `darwinsys.com/file`, `darwin:llvm.org`, `linux:gnu.org/gcc` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnupgorglibgcrypt * console.log(pkg.name) // "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: '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: 'https://gnupg.org/related_software/libgcrypt/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnupg.org/libgcrypt'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnupg.org/libgcrypt -- $SHELL -i'; launchpadInstallCommand: '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 []; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['darwinsys.com/file', 'darwin:llvm.org', 'linux:gnu.org/gcc']; /** * 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', '1.8.12']; aliases: readonly [] }; export type GnupgorglibgcryptPackage = typeof gnupgorglibgcryptPackage