/** * **qhull** - Qhull development for www.qhull.org -- Qhull 2020.2 (8.1-alpha1) at https://github.com/qhull/qhull/wiki * * @domain `qhull.org` * @programs `qconvex`, `qdelaunay`, `qhalf`, `qhull`, `qvoronoi`, ... (+1 more) * @version `8.0.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install qhull.org` * @homepage http://www.qhull.org/ * @buildDependencies `cmake.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.qhullorg * console.log(pkg.name) // "qhull" * console.log(pkg.description) // "Qhull development for www.qhull.org -- Qhull 20..." * console.log(pkg.programs) // ["qconvex", "qdelaunay", ...] * console.log(pkg.versions[0]) // "8.0.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/qhull-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const qhullorgPackage: { /** * The display name of this package. */ name: 'qhull'; /** * The canonical domain name for this package. */ domain: 'qhull.org'; /** * Brief description of what this package does. */ description: 'Qhull development for www.qhull.org -- Qhull 2020.2 (8.1-alpha1) at https://github.com/qhull/qhull/wiki'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/qhull.org/package.yml'; homepageUrl: 'http://www.qhull.org/'; githubUrl: 'https://github.com/qhull/qhull'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install qhull.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +qhull.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install qhull.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['qconvex', 'qdelaunay', 'qhalf', 'qhull', 'qvoronoi', 'rbox']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['8.0.2']; aliases: readonly [] }; export type QhullorgPackage = typeof qhullorgPackage