/** * **XMLStarlet** - XML command-line utilities * * @domain `sourceforge.net/xmlstar` * @programs `xml`, `xmlstarlet` * @version `1.6.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install sourceforge.net/xmlstar` * @homepage https://xmlstar.sourceforge.net/ * @dependencies `gnome.org/libxslt^1` * @buildDependencies `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.sourceforgenetxmlstar * console.log(pkg.name) // "XMLStarlet" * console.log(pkg.description) // "XML command-line utilities" * console.log(pkg.programs) // ["xml", "xmlstarlet"] * console.log(pkg.versions[0]) // "1.6.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sourceforge-net/xmlstar.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sourceforgenetxmlstarPackage: { /** * The display name of this package. */ name: 'XMLStarlet'; /** * The canonical domain name for this package. */ domain: 'sourceforge.net/xmlstar'; /** * Brief description of what this package does. */ description: 'XML command-line utilities'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sourceforge.net/xmlstar/package.yml'; homepageUrl: 'https://xmlstar.sourceforge.net/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sourceforge.net/xmlstar'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +sourceforge.net/xmlstar -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sourceforge.net/xmlstar'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xml', 'xmlstarlet']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnome.org/libxslt^1']; /** * 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 ['linux:gnu.org/gcc']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.1']; aliases: readonly [] }; export type SourceforgenetxmlstarPackage = typeof sourceforgenetxmlstarPackage