/** * **sfcgal-config** - C++ wrapper library around CGAL * * @domain `sfcgal.org` * @programs `sfcgal-config` * @version `2.2.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install sfcgal.org` * @homepage https://sfcgal.gitlab.io/SFCGAL/ * @dependencies `boost.org`, `cgal.org`, `gnu.org/gmp`, ... (+1 more) * @buildDependencies `cmake.org`, `linux:gnu.org/gcc`, `linux:gnu.org/make` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.sfcgalorg * console.log(pkg.name) // "sfcgal-config" * console.log(pkg.description) // "C++ wrapper library around CGAL" * console.log(pkg.programs) // ["sfcgal-config"] * console.log(pkg.versions[0]) // "2.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sfcgal-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sfcgalorgPackage: { /** * The display name of this package. */ name: 'sfcgal-config'; /** * The canonical domain name for this package. */ domain: 'sfcgal.org'; /** * Brief description of what this package does. */ description: 'C++ wrapper library around CGAL'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sfcgal.org/package.yml'; homepageUrl: 'https://sfcgal.gitlab.io/SFCGAL/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sfcgal.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +sfcgal.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sfcgal.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sfcgal-config']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['boost.org', 'cgal.org', 'gnu.org/gmp', 'gnu.org/mpfr']; /** * 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 ['cmake.org', 'linux:gnu.org/gcc', 'linux:gnu.org/make']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.2.0', '2.1.0', '2.0.0', '1.5.2', '1.5.1', '1.5.0', '1.4.1']; aliases: readonly [] }; export type SfcgalorgPackage = typeof sfcgalorgPackage