/** * **ldap** - Open source suite of directory software * * @domain `openldap.org` * @programs `ldapcompare`, `ldapdelete`, `ldapexop`, `ldapmodify`, `ldapmodrdn`, ... (+5 more) * @version `2.6.10` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install openldap.org` * @homepage https://www.openldap.org/software/ * @dependencies `openssl.org^1.1`, `linux:github.com/util-linux/util-linux` (includes OS-specific dependencies with `os:package` format) * @buildDependencies `gnu.org/sed` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openldaporg * console.log(pkg.name) // "ldap" * console.log(pkg.description) // "Open source suite of directory software" * console.log(pkg.programs) // ["ldapcompare", "ldapdelete", ...] * console.log(pkg.versions[0]) // "2.6.10" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openldap-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openldaporgPackage: { /** * The display name of this package. */ name: 'ldap'; /** * The canonical domain name for this package. */ domain: 'openldap.org'; /** * Brief description of what this package does. */ description: 'Open source suite of directory software'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openldap.org/package.yml'; homepageUrl: 'https://www.openldap.org/software/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install openldap.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openldap.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openldap.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ldapcompare', 'ldapdelete', 'ldapexop', 'ldapmodify', 'ldapmodrdn', 'ldappasswd', 'ldapsearch', 'ldapurl', 'ldapvc', 'ldapwhoami']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['openssl.org^1.1', 'linux:github.com/util-linux/util-linux']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/sed']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.6.10', '2.6.9', '2.6.8', '2.6.7', '2.6.6', '2.6.5', '2.6.4', '2.5.20', '2.5.19', '2.5.18', '2.5.17', '2.5.16', '2.5.15']; aliases: readonly [] }; export type OpenldaporgPackage = typeof openldaporgPackage