/** * **cgal** - The public CGAL repository, see the README below * * @domain `cgal.org` * @programs `cgal_create_CMakeLists`, `cgal_create_cmake_script`, `cgal_make_macosx_app` * @version `6.1.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install cgal.org` * @homepage https://github.com/CGAL/cgal#readme * @dependencies `boost.org`, `eigen.tuxfamily.org`, `gnu.org/gmp`, ... (+2 more) * @buildDependencies `cmake.org`, `qt.io@~5`, `linux:gnu.org/gcc` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cgalorg * console.log(pkg.name) // "cgal" * console.log(pkg.description) // "The public CGAL repository, see the README below" * console.log(pkg.programs) // ["cgal_create_CMakeLists", "cgal_create_cmake_script", ...] * console.log(pkg.versions[0]) // "6.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cgal-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cgalorgPackage: { /** * The display name of this package. */ name: 'cgal'; /** * The canonical domain name for this package. */ domain: 'cgal.org'; /** * Brief description of what this package does. */ description: 'The public CGAL repository, see the README below'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cgal.org/package.yml'; homepageUrl: 'https://github.com/CGAL/cgal#readme'; githubUrl: 'https://github.com/CGAL/cgal'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cgal.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +cgal.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install cgal.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cgal_create_CMakeLists', 'cgal_create_cmake_script', 'cgal_make_macosx_app']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['boost.org', 'eigen.tuxfamily.org', 'gnu.org/gmp', 'gnu.org/mpfr', 'openssl.org']; /** * 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', 'qt.io@~5', 'linux:gnu.org/gcc']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.1.0', '6.0.2', '6.0.1', '6.0.0', '5.6.2', '5.6.1', '5.6.0']; aliases: readonly [] }; export type CgalorgPackage = typeof cgalorgPackage