/** * **termusic** - Music Player TUI written in Rust * * @domain `crates.io/termusic` * @programs `termusic`, `termusic-server` * @version `0.12.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/termusic` * @dependencies `linux:alsa-project.org/alsa-lib`, `linux:freedesktop.org/dbus` (includes OS-specific dependencies with `os:package` format) * @buildDependencies `protobuf.dev`, `abseil.io@^20250127` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiotermusic * console.log(pkg.name) // "termusic" * console.log(pkg.description) // "Music Player TUI written in Rust" * console.log(pkg.programs) // ["termusic", "termusic-server"] * console.log(pkg.versions[0]) // "0.12.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/termusic.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiotermusicPackage: { /** * The display name of this package. */ name: 'termusic'; /** * The canonical domain name for this package. */ domain: 'crates.io/termusic'; /** * Brief description of what this package does. */ description: 'Music Player TUI written in Rust'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/termusic/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/tramhao/termusic'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/termusic'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/termusic -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/termusic'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['termusic', 'termusic-server']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:alsa-project.org/alsa-lib', 'linux:freedesktop.org/dbus']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['protobuf.dev', 'abseil.io@^20250127']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.12.0', '0.11.0', '0.10.0', '0.9.1', '0.9.0']; aliases: readonly [] }; export type CratesiotermusicPackage = typeof cratesiotermusicPackage