UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

79 lines 3.35 kB
/** * **ruby-build** - A tool to download, compile, and install Ruby on Unix-like systems. * * @domain `rbenv.org/ruby-build` * @programs `ruby-build` * @version `20250610.0.0` (44 versions available) * @versions From newest version to oldest. * * @install `launchpad install ruby-build` * @name `ruby-build` * @dependencies `openssl.org>=1.1`, `curl.se`, `gnu.org/autoconf^2.72`, ... (+3 more) * @companions `linux` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.rubybuild * // Or access via domain * const samePkg = pantry.rbenvorgrubybuild * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ruby-build" * console.log(pkg.description) // "A tool to download, compile, and install Ruby o..." * console.log(pkg.programs) // ["ruby-build"] * console.log(pkg.versions[0]) // "20250610.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rbenv-org/ruby-build.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rubybuildPackage: { /** * The display name of this package. */ name: 'ruby-build'; /** * The canonical domain name for this package. */ domain: 'rbenv.org/ruby-build'; /** * Brief description of what this package does. */ description: 'A tool to download, compile, and install Ruby on Unix-like systems.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rbenv.org/ruby-build/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/rbenv/ruby-build'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ruby-build'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ruby-build']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['linux']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org>=1.1', 'curl.se', 'gnu.org/autoconf^2.72', 'freedesktop.org/pkg-config', 'gnu.org/readline^8.2', 'pyyaml.org/libyaml^0.2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['20250610.0.0', '20250529.1.0', '20250516.0.0', '20250507.0.0', '20250430.0.0', '20250424.0.0', '20250418.0.0', '20250415.0.0', '20250409.0.0', '20250326.0.0', '20250318.0.0', '20250215.0.0', '20250212.0.0', '20250205.0.0', '20250130.0.0', '20250127.0.0', '20250121.0.0', '20250115.0.0', '20250114.0.0', '20241225.2.0', '20241225.1.0', '20241225.0.0', '20241213.0.0', '20241105.0.0', '20241030.0.0', '20241017.0.0', '20241007.0.0', '20240917.0.0', '20240903.0.0', '20240727.0.0', '20240722.0.0', '20240709.1.0', '20240709.0.0', '20240702.0.0', '20240612.0.0', '20240530.1.0', '20240530.0.0', '20240517.0.0', '20240501.0.0', '20240423.0.0', '20240416.0.0', '20240319.0.0', '20240318.0.0', '20240221.0.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type RubybuildPackage = typeof rubybuildPackage