/** * **musl.libc** - pkgx package * * @domain `musl.libc.org` * @programs `ld.musl-clang`, `musl-clang` * @version `1.2.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install musl.libc.org` * @dependencies `llvm.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.musllibcorg * console.log(pkg.name) // "musl.libc" * console.log(pkg.programs) // ["ld.musl-clang", "musl-clang"] * console.log(pkg.versions[0]) // "1.2.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/musl-libc-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const musllibcorgPackage: { /** * The display name of this package. */ name: 'musl.libc'; /** * The canonical domain name for this package. */ domain: 'musl.libc.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/musl.libc.org/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install musl.libc.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +musl.libc.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install musl.libc.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ld.musl-clang', 'musl-clang']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['llvm.org']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.3']; aliases: readonly [] }; export type MusllibcorgPackage = typeof musllibcorgPackage