UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.64 kB
/** * **apache.org/httpd** - Apache HTTP server * * @domain `apache.org/httpd` * @programs `ab`, `apachectl`, `checkgid`, `fcgistarter`, `htcacheclean`, ... (+8 more) * @version `2.4.65` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install apache.org/httpd` * @dependencies `apache.org/apr>=1.3.0`, `apache.org/apr-util>=1.3.0`, `github.com/google/brotli`, ... (+6 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.apacheorghttpd * console.log(pkg.name) // "apache.org/httpd" * console.log(pkg.description) // "Apache HTTP server" * console.log(pkg.programs) // ["ab", "apachectl", ...] * console.log(pkg.versions[0]) // "2.4.65" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/apache-org/httpd.md * @see https://ts-pkgx.netlify.app/usage */ export declare const apacheorghttpdPackage: { /** * The display name of this package. */ name: 'apache.org/httpd'; /** * The canonical domain name for this package. */ domain: 'apache.org/httpd'; /** * Brief description of what this package does. */ description: 'Apache HTTP server'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apache.org/httpd/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install apache.org/httpd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ab', 'apachectl', 'checkgid', 'fcgistarter', 'htcacheclean', 'htdbm', 'htdigest', 'htpasswd', 'httpd', 'httxt2dbm', 'logresolve', 'rotatelogs', 'suexec']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['apache.org/apr>=1.3.0', 'apache.org/apr-util>=1.3.0', 'github.com/google/brotli', 'nghttp2.org', 'openssl.org', 'pcre.org/v2', 'gnome.org/libxml2', 'zlib.net', 'libexpat.github.io']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.4.65', '2.4.64', '2.4.63', '2.4.62', '2.4.61', '2.4.60', '2.4.59', '2.4.58', '2.4.57']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +apache.org/httpd -- $SHELL -i'; launchpadInstallCommand: 'launchpad install apache.org/httpd' }; export type ApacheorghttpdPackage = typeof apacheorghttpdPackage