/** * **rist** - Reliable Internet Stream Transport (RIST) * * @domain `code.videolan.org/rist/librist` * @programs `rist2rist`, `ristreceiver`, `ristsender`, `ristsrppasswd` * @version `0.2.11` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install code.videolan.org/rist/librist` * @homepage https://code.videolan.org/rist/ * @buildDependencies `mesonbuild.com@>=0.47<1`, `linux:sourceware.org/libffi@3` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.codevideolanorgristlibrist * console.log(pkg.name) // "rist" * console.log(pkg.description) // "Reliable Internet Stream Transport (RIST)" * console.log(pkg.programs) // ["rist2rist", "ristreceiver", ...] * console.log(pkg.versions[0]) // "0.2.11" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/code-videolan-org/rist/librist.md * @see https://ts-pkgx.netlify.app/usage */ export declare const codevideolanorgristlibristPackage: { /** * The display name of this package. */ name: 'rist'; /** * The canonical domain name for this package. */ domain: 'code.videolan.org/rist/librist'; /** * Brief description of what this package does. */ description: 'Reliable Internet Stream Transport (RIST)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/code.videolan.org/rist/librist/package.yml'; homepageUrl: 'https://code.videolan.org/rist/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install code.videolan.org/rist/librist'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +code.videolan.org/rist/librist -- $SHELL -i'; launchpadInstallCommand: 'launchpad install code.videolan.org/rist/librist'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rist2rist', 'ristreceiver', 'ristsender', 'ristsrppasswd']; 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 ['mesonbuild.com@>=0.47<1', 'linux:sourceware.org/libffi@3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.11', '0.2.8', '0.2.7']; aliases: readonly [] }; export type CodevideolanorgristlibristPackage = typeof codevideolanorgristlibristPackage