/** * **emacs** - GNU Emacs text editor * * @domain `gnu.org/emacs` * @programs `emacs` * @version `30.2.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/emacs` * @homepage https://www.gnu.org/software/emacs/ * @dependencies `gnome.org/libxml2^2.10.3`, `invisible-island.net/ncurses^6.3.0`, `libjpeg-turbo.org^2.1.5.1`, ... (+5 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgemacs * console.log(pkg.name) // "emacs" * console.log(pkg.description) // "GNU Emacs text editor" * console.log(pkg.programs) // ["emacs"] * console.log(pkg.versions[0]) // "30.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/emacs.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgemacsPackage: { /** * The display name of this package. */ name: 'emacs'; /** * The canonical domain name for this package. */ domain: 'gnu.org/emacs'; /** * Brief description of what this package does. */ description: 'GNU Emacs text editor'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/emacs/package.yml'; homepageUrl: 'https://www.gnu.org/software/emacs/'; githubUrl: 'https://github.com/emacs-mirror/emacs'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/emacs'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/emacs -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/emacs'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['emacs']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnome.org/libxml2^2.10.3', 'invisible-island.net/ncurses^6.3.0', 'libjpeg-turbo.org^2.1.5.1', 'gnu.org/sed^4.9.0', 'gnu.org/texinfo^7.0.1', 'gnu.org/libidn2^2.3', 'gnutls.org^3.6', 'zlib.net^1.2']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['30.2.0', '30.1.0', '29.4.0', '29.3.0', '29.2.0', '29.1.0', '28.2.0']; aliases: readonly [] }; export type GnuorgemacsPackage = typeof gnuorgemacsPackage