ts-pkgx
Version:
A library & CLI for managing packages
62 lines • 2.16 kB
TypeScript
/**
* **freedesktop.org/cppunit** - Unit testing framework for C++
*
* @domain `freedesktop.org/cppunit`
* @programs `cppunit-config`, `DllPlugInTester`
* @version `1.13.2` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install freedesktop.org/cppunit`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.freedesktoporgcppunit
* console.log(pkg.name) // "freedesktop.org/cppunit"
* console.log(pkg.description) // "Unit testing framework for C++"
* console.log(pkg.programs) // ["cppunit-config", "DllPlugInTester"]
* console.log(pkg.versions[0]) // "1.13.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/freedesktop-org/cppunit.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const freedesktoporgcppunitPackage: {
/**
* The display name of this package.
*/
name: 'freedesktop.org/cppunit';
/**
* The canonical domain name for this package.
*/
domain: 'freedesktop.org/cppunit';
/**
* Brief description of what this package does.
*/
description: 'Unit testing framework for C++';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freedesktop.org/cppunit/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install freedesktop.org/cppunit';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['cppunit-config', 'DllPlugInTester'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.13.2'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +freedesktop.org/cppunit -- $SHELL -i';
launchpadInstallCommand: 'launchpad install freedesktop.org/cppunit'
};
export type FreedesktoporgcppunitPackage = typeof freedesktoporgcppunitPackage