UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.8 kB
/** * **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` * @name `openslide` * @dependencies `cairographics.org`, `gnome.org/gdk-pixbuf`, `gnome.org/glib`, ... (+6 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.openslide * // Or access via domain * const samePkg = pantry.openslideorg * console.log(pkg === samePkg) // true * 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 openslidePackage: { /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install openslide'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['openslide-quickhash1sum', 'openslide-show-properties', 'openslide-write-png']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ 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']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.0.0', '3.4.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openslide.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openslide' }; export type OpenslidePackage = typeof openslidePackage