/** * **aserver** - Provides audio and MIDI functionality to the Linux operating system * * @domain `alsa-project.org/alsa-lib` * @programs `aserver` * @version `1.2.14` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install alsa-project.org/alsa-lib` * @homepage https://www.alsa-project.org/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.alsaprojectorgalsalib * console.log(pkg.name) // "aserver" * console.log(pkg.description) // "Provides audio and MIDI functionality to the Li..." * console.log(pkg.programs) // ["aserver"] * console.log(pkg.versions[0]) // "1.2.14" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/alsa-project-org/alsa-lib.md * @see https://ts-pkgx.netlify.app/usage */ export declare const alsaprojectorgalsalibPackage: { /** * The display name of this package. */ name: 'aserver'; /** * The canonical domain name for this package. */ domain: 'alsa-project.org/alsa-lib'; /** * Brief description of what this package does. */ description: 'Provides audio and MIDI functionality to the Linux operating system'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/alsa-project.org/alsa-lib/package.yml'; homepageUrl: 'https://www.alsa-project.org/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install alsa-project.org/alsa-lib'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +alsa-project.org/alsa-lib -- $SHELL -i'; launchpadInstallCommand: 'launchpad install alsa-project.org/alsa-lib'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['aserver']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.14', '1.2.13', '1.2.12', '1.2.11', '1.2.10', '1.2.9']; aliases: readonly [] }; export type AlsaprojectorgalsalibPackage = typeof alsaprojectorgalsalibPackage