/** * **gdbm** - GNU database manager * * @domain `gnu.org/gdbm` * @programs `gdbm_dump`, `gdbm_load`, `gdbmtool` * @version `1.26.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/gdbm` * @homepage https://www.gnu.org.ua/software/gdbm/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorggdbm * console.log(pkg.name) // "gdbm" * console.log(pkg.description) // "GNU database manager" * console.log(pkg.programs) // ["gdbm_dump", "gdbm_load", ...] * console.log(pkg.versions[0]) // "1.26.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/gdbm.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorggdbmPackage: { /** * The display name of this package. */ name: 'gdbm'; /** * The canonical domain name for this package. */ domain: 'gnu.org/gdbm'; /** * Brief description of what this package does. */ description: 'GNU database manager'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/gdbm/package.yml'; homepageUrl: 'https://www.gnu.org.ua/software/gdbm/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/gdbm'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/gdbm -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/gdbm'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gdbm_dump', 'gdbm_load', 'gdbmtool']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.26.0', '1.25.0', '1.24.0', '1.23.0']; aliases: readonly [] }; export type GnuorggdbmPackage = typeof gnuorggdbmPackage