Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,27 @@ You can use it as follows:

git clone https://github.com/gap-packages/PackageMaker

2. Start GAP, load the `PackageMaker` package and run the package wizard:
Alternatively you could install `PackageMaker` using the [PackageManager](https://github.com/gap-packages/PackageManager) GAP package by entering these commands in GAP:

LoadPackage("PackageManager");
InstallPackage("https://github.com/gap-packages/PackageMaker");

2. Start GAP, load the `PackageMaker` package:

LoadPackage("PackageMaker");

3. Run the package wizard:

PackageWizard();

3. Answer the questions about your new package. Afterwards, `PackageMaker`
4. Answer the questions about your new package. Afterwards, `PackageMaker`
creates a new directory for the new package and populates it with all the
files needed for a basic package.

4. Move the newly created package directory to a suitable place.
5. Move the newly created package directory to a suitable place.

> Note: The `PackageWizard` function generates your new package in the current directory, not automatically in the `pkg` directory. You will need to manually move the generated directory to the `pkg` folder in your GAP installation.
Or just start GAP inside the `pkg` directory.

Next, you may wish to learn more about the purpose of the various
generated files as well as the the meaning and correct usage of the
Expand Down