Note This section will be updated with the actual help text of the tool when we determine that the commandline interface is reasonably stable.
Run
paxy --helpto see the various commandline options available.
Please visit https://pax-hub.github.io/book-paxy for a detailed user guide.
Please visit https://pax-hub.github.io/paxy the full API documentation.
To download the source code to your local computer for testing, or for development, you can clone from the remote repository using either SSH, or HTTPS. Below are instructions on how to do so using GitHub hosted code as remote.
git clone https://github.com/pax-hub/paxy.git OR
git clone git@github.com:pax-hub/paxy.gitChange to the project directory (cd paxy) and run any of the below scripts:
-
sh packaging/archlinux/setup.sh <MODE>: Builds and installs a package -
sh packaging/archlinux/build-package.sh <MODE>: Just builds a package without installing it locally -
sh packaging/archlinux/install-package.sh <MODE>: Just installs a package locally, except if no built package is detected, a package is built. -
where
<MODE>can be one of the belowlocal: Selects paxy-local from the local project that you have cloned already.git: Selects paxy-git from the latest git commit.stable: Selects paxy from the git tag corresponding to thepkgverspecified in the PKGBUILD. Ifpkgver=0.0.1, then the git tagv0.0.1is used for packaging.
Note: Any additional parameters passed to the above scripts are automatically sent to
makepkgorpacman(whichever is applicable).
TODO