/** * **augeas** - A configuration editing tool and API * * @domain `augeas.net` * @programs `augmatch`, `augparse`, `augprint`, `augtool`, `fadot` * @version `1.14.1` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install augeas.net` * @homepage https://augeas.net/ * @dependencies `gnu.org/readline`, `gnome.org/libxml2` * @buildDependencies `gnu.org/autoconf`, `gnu.org/automake`, `gnu.org/bison`, ... (+4 more) (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.augeasnet * console.log(pkg.name) // "augeas" * console.log(pkg.description) // "A configuration editing tool and API" * console.log(pkg.programs) // ["augmatch", "augparse", ...] * console.log(pkg.versions[0]) // "1.14.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/augeas-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const augeasnetPackage: { /** * The display name of this package. */ name: 'augeas'; /** * The canonical domain name for this package. */ domain: 'augeas.net'; /** * Brief description of what this package does. */ description: 'A configuration editing tool and API'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/augeas.net/package.yml'; homepageUrl: 'https://augeas.net/'; githubUrl: 'https://github.com/hercules-team/augeas'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install augeas.net'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +augeas.net -- $SHELL -i'; launchpadInstallCommand: 'launchpad install augeas.net'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['augmatch', 'augparse', 'augprint', 'augtool', 'fadot']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnu.org/readline', 'gnome.org/libxml2']; /** * 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 ['gnu.org/autoconf', 'gnu.org/automake', 'gnu.org/bison', 'gnu.org/libtool', 'curl.se', 'gnu.org/patch', 'linux:gnu.org/gcc']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.14.1', '1.14.0']; aliases: readonly [] }; export type AugeasnetPackage = typeof augeasnetPackage