/** * **gource** - software version control visualization * * @domain `gource.io` * @programs `gource` * @version `0.55.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install gource.io` * @homepage https://gource.io * @dependencies `boost.org^1.82`, `freetype.org^2`, `libpng.org^1.6`, ... (+4 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gourceio * console.log(pkg.name) // "gource" * console.log(pkg.description) // "software version control visualization" * console.log(pkg.programs) // ["gource"] * console.log(pkg.versions[0]) // "0.55.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gource-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gourceioPackage: { /** * The display name of this package. */ name: 'gource'; /** * The canonical domain name for this package. */ domain: 'gource.io'; /** * Brief description of what this package does. */ description: 'software version control visualization'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gource.io/package.yml'; homepageUrl: 'https://gource.io'; githubUrl: 'https://github.com/acaudwell/Gource'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gource.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gource.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gource.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gource']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['boost.org^1.82', 'freetype.org^2', 'libpng.org^1.6', 'pcre.org/v2^10', 'libsdl.org^2', 'glew.sourceforge.io^2', 'libsdl.org/SDL_image^2']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.55.0', '0.54.0']; aliases: readonly [] }; export type GourceioPackage = typeof gourceioPackage