/** * **gts.sourceforge** - GNU triangulated surface library * * @domain `gts.sourceforge.net` * @programs `delaunay`, `gts2dxf`, `gts2oogl`, `gts2stl`, `gtscheck`, ... (+4 more) * @version `0.7.6` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install gts.sourceforge.net` * @homepage https://gts.sourceforge.net/ * @dependencies `gnome.org/glib>=2.4.0` * @buildDependencies `gnu.org/automake`, `gnu.org/autoconf`, `gnu.org/libtool` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gtssourceforgenet * console.log(pkg.name) // "gts.sourceforge" * console.log(pkg.description) // "GNU triangulated surface library" * console.log(pkg.programs) // ["delaunay", "gts2dxf", ...] * console.log(pkg.versions[0]) // "0.7.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gts-sourceforge-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gtssourceforgenetPackage: { /** * The display name of this package. */ name: 'gts.sourceforge'; /** * The canonical domain name for this package. */ domain: 'gts.sourceforge.net'; /** * Brief description of what this package does. */ description: 'GNU triangulated surface library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gts.sourceforge.net/package.yml'; homepageUrl: 'https://gts.sourceforge.net/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gts.sourceforge.net'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gts.sourceforge.net -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gts.sourceforge.net'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['delaunay', 'gts2dxf', 'gts2oogl', 'gts2stl', 'gtscheck', 'gtscompare', 'gtstemplate', 'stl2gts', 'transform']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnome.org/glib>=2.4.0']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/automake', 'gnu.org/autoconf', 'gnu.org/libtool']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.6']; aliases: readonly [] }; export type GtssourceforgenetPackage = typeof gtssourceforgenetPackage