ts-pkgx
Version:
A library & CLI for managing packages
67 lines • 2.51 kB
TypeScript
/**
* **github.com/OSGeo/libgeotiff** - Official repository of the libgeotiff project
*
* @domain `github.com/OSGeo/libgeotiff`
* @programs `applygeo`, `geotifcp`, `listgeo`
* @version `1.7.4` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install github.com/OSGeo/libgeotiff`
* @dependencies `libjpeg-turbo.org`, `simplesystems.org/libtiff`, `proj.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.githubcomosgeolibgeotiff
* console.log(pkg.name) // "github.com/OSGeo/libgeotiff"
* console.log(pkg.description) // "Official repository of the libgeotiff project"
* console.log(pkg.programs) // ["applygeo", "geotifcp", ...]
* console.log(pkg.versions[0]) // "1.7.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/OSGeo/libgeotiff.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const githubcomosgeolibgeotiffPackage: {
/**
* The display name of this package.
*/
name: 'github.com/OSGeo/libgeotiff';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/OSGeo/libgeotiff';
/**
* Brief description of what this package does.
*/
description: 'Official repository of the libgeotiff project';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/OSGeo/libgeotiff/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install github.com/OSGeo/libgeotiff';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['applygeo', 'geotifcp', 'listgeo'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['libjpeg-turbo.org', 'simplesystems.org/libtiff', 'proj.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.7.4', '1.7.3', '1.7.2', '1.7.1'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/OSGeo/libgeotiff -- $SHELL -i';
launchpadInstallCommand: 'launchpad install github.com/OSGeo/libgeotiff'
};
export type GithubcomosgeolibgeotiffPackage = typeof githubcomosgeolibgeotiffPackage