/** * **libevent** - Event notification library * * @domain `libevent.org` * @version `2.1.12` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install libevent.org` * @homepage https://libevent.org * @dependencies `openssl.org^1.1` * @buildDependencies `gnu.org/libtool@2`, `gnu.org/automake@1`, `gnu.org/autoconf@2` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.libeventorg * console.log(pkg.name) // "libevent" * console.log(pkg.description) // "Event notification library" * console.log(pkg.versions[0]) // "2.1.12" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libevent-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libeventorgPackage: { /** * The display name of this package. */ name: 'libevent'; /** * The canonical domain name for this package. */ domain: 'libevent.org'; /** * Brief description of what this package does. */ description: 'Event notification library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libevent.org/package.yml'; homepageUrl: 'https://libevent.org'; githubUrl: 'https://github.com/libevent/libevent'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install libevent.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libevent.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install libevent.org'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/libtool@2', 'gnu.org/automake@1', 'gnu.org/autoconf@2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.1.12']; aliases: readonly [] }; export type LibeventorgPackage = typeof libeventorgPackage