/** * **pcap-config** - the LIBpcap interface to various kernel packet capture mechanism * * @domain `tcpdump.org` * @programs `pcap-config` * @version `1.10.5` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install tcpdump.org` * @homepage https://www.tcpdump.org/ * @buildDependencies `gnu.org/make`, `gnu.org/bison`, `github.com/westes/flex` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.tcpdumporg * console.log(pkg.name) // "pcap-config" * console.log(pkg.description) // "the LIBpcap interface to various kernel packet ..." * console.log(pkg.programs) // ["pcap-config"] * console.log(pkg.versions[0]) // "1.10.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/tcpdump-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tcpdumporgPackage: { /** * The display name of this package. */ name: 'pcap-config'; /** * The canonical domain name for this package. */ domain: 'tcpdump.org'; /** * Brief description of what this package does. */ description: 'the LIBpcap interface to various kernel packet capture mechanism'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tcpdump.org/package.yml'; homepageUrl: 'https://www.tcpdump.org/'; githubUrl: 'https://github.com/the-tcpdump-group/libpcap'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tcpdump.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +tcpdump.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install tcpdump.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pcap-config']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/make', 'gnu.org/bison', 'github.com/westes/flex']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.10.5', '1.10.4']; aliases: readonly [] }; export type TcpdumporgPackage = typeof tcpdumporgPackage