/** * **shout** - Data and connectivity library for the icecast server * * @domain `xiph.org/libshout` * @programs `shout` * @version `2.4.6` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install xiph.org/libshout` * @homepage https://icecast.org/ * @dependencies `xiph.org/ogg`, `xiph.org/vorbis`, `openssl.org~1`, ... (+2 more) * @buildDependencies `darwin:curl.se`, `darwin:gnu.org/patch`, `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.xiphorglibshout * console.log(pkg.name) // "shout" * console.log(pkg.description) // "Data and connectivity library for the icecast s..." * console.log(pkg.programs) // ["shout"] * console.log(pkg.versions[0]) // "2.4.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/xiph-org/libshout.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xiphorglibshoutPackage: { /** * The display name of this package. */ name: 'shout'; /** * The canonical domain name for this package. */ domain: 'xiph.org/libshout'; /** * Brief description of what this package does. */ description: 'Data and connectivity library for the icecast server'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/xiph.org/libshout/package.yml'; homepageUrl: 'https://icecast.org/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xiph.org/libshout'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +xiph.org/libshout -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xiph.org/libshout'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['shout']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['xiph.org/ogg', 'xiph.org/vorbis', 'openssl.org~1', 'speex.org', 'theora.org']; /** * 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 ['darwin:curl.se', 'darwin: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 ['2.4.6']; aliases: readonly [] }; export type XiphorglibshoutPackage = typeof xiphorglibshoutPackage