/** * **openslide** - C library to read whole-slide images (a.k.a. virtual slides) * * @domain `openslide.org` * @programs `openslide-quickhash1sum`, `openslide-show-properties`, `openslide-write-png` * @version `4.0.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install openslide.org` * @homepage https://openslide.org/ * @dependencies `cairographics.org`, `gnome.org/gdk-pixbuf`, `gnome.org/glib`, ... (+6 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openslideorg * console.log(pkg.name) // "openslide" * console.log(pkg.description) // "C library to read whole-slide images (a.k.a. vi..." * console.log(pkg.programs) // ["openslide-quickhash1sum", "openslide-show-properties", ...] * console.log(pkg.versions[0]) // "4.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openslide-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openslideorgPackage: { /** * The display name of this package. */ name: 'openslide'; /** * The canonical domain name for this package. */ domain: 'openslide.org'; /** * Brief description of what this package does. */ description: 'C library to read whole-slide images (a.k.a. virtual slides)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openslide.org/package.yml'; homepageUrl: 'https://openslide.org/'; githubUrl: 'https://github.com/openslide/openslide'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install openslide.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openslide.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openslide.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['openslide-quickhash1sum', 'openslide-show-properties', 'openslide-write-png']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['cairographics.org', 'gnome.org/gdk-pixbuf', 'gnome.org/glib', 'libjpeg-turbo.org', 'libpng.org', 'simplesystems.org/libtiff', 'gnome.org/libxml2', 'openjpeg.org', 'sqlite.org']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.0.0', '3.4.1']; aliases: readonly [] }; export type OpenslideorgPackage = typeof openslideorgPackage