/** * **swift** - The Swift Programming Language * * @domain `swift.org` * @programs `docc`, `dsymutil`, `sourcekit-lsp`, `swift-api-checker.py`, `swift-build-sdk-interfaces`, ... (+21 more) * @version `6.2.1` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install swift.org` * @homepage https://swift.org * @dependencies `linux:gnu.org/gcc`, `linux:gnu.org/binutils`, `linux:gnupg.org^2`, ... (+4 more) (includes OS-specific dependencies with `os:package` format) * @buildDependencies `curl.se` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.swiftorg * console.log(pkg.name) // "swift" * console.log(pkg.description) // "The Swift Programming Language" * console.log(pkg.programs) // ["docc", "dsymutil", ...] * console.log(pkg.versions[0]) // "6.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/swift-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const swiftorgPackage: { /** * The display name of this package. */ name: 'swift'; /** * The canonical domain name for this package. */ domain: 'swift.org'; /** * Brief description of what this package does. */ description: 'The Swift Programming Language'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/swift.org/package.yml'; homepageUrl: 'https://swift.org'; githubUrl: 'https://github.com/apple/swift'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install swift.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +swift.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install swift.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['docc', 'dsymutil', 'sourcekit-lsp', 'swift-api-checker.py', 'swift-build-sdk-interfaces', 'swift-build-tool', 'swift-demangle', 'swift-driver', 'swift-format', 'swift-frontend', 'swift-help', 'swift-package', 'swift-plugin-server', 'swift-stdlib-tool', 'swift', 'swift-api-digester', 'swift-api-extract', 'swift-autolink-extract', 'swift-build', 'swift-experimental-sdk', 'swift-package-collection', 'swift-package-registry', 'swift-run', 'swift-symbolgraph-extract', 'swift-test', 'swiftc']; 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:gnu.org/gcc', 'linux:gnu.org/binutils', 'linux:gnupg.org^2', 'linux:gnome.org/libxml2', 'linux:libgit2.org~1.7 # links to libgit2.so.1.7', 'linux:curl.se', 'linux:sqlite.org^3']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['curl.se']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.2.1', '6.2.0', '6.1.3', '6.1.2', '6.1.1', '6.1.0', '6.0.3', '6.0.2', '6.0.1', '6.0.0', '5.10.1', '5.10.0', '5.9.2']; aliases: readonly [] }; export type SwiftorgPackage = typeof swiftorgPackage