UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.54 kB
/** * **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.0.1` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install +cgal.org -- $SHELL -i` * @aliases `cgal` * @dependencies `boost.org`, `eigen.tuxfamily.org`, `gnu.org/gmp`, ... (+2 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.cgal * // Or access via domain * const samePkg = pantry.cgalorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "cgal.org" * 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.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cgal-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cgalPackage: { /** * The display name of this package. */ name: 'cgal.org'; /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +cgal.org -- $SHELL -i'; /** * 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 []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['boost.org', 'eigen.tuxfamily.org', 'gnu.org/gmp', 'gnu.org/mpfr', 'openssl.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.0.1', '6.0.0', '5.6.2', '5.6.1', '5.6.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['cgal'] }; export type CgalPackage = typeof cgalPackage