[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: define-package, use-package and recipe: which ones?
From: |
Stefan Monnier |
Subject: |
Re: define-package, use-package and recipe: which ones? |
Date: |
Sat, 30 Nov 2024 14:14:43 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
> I am (almost) ready to post a couple of packages to elpa/melpa, but I am by
> now confused about what to put in the top level folder.
The main ELisp file of your package, using the recommended format for
ELisp files, and in which you make sure to include a `Version:` header
an `Author:` header (or `Maintainer:`), as well as (if needed)
a `Package-Requires:` header.
The MELPA/(Non)GNU ELPA scripts will take care to generate the
`<PKG>-pkg.el` from that (which will contain a `package-define` form).
Stefan
PS: `use-package` is something only loosely related.