diff options
-rw-r--r-- | README.md | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -1,8 +1,8 @@ # Slackware Package Tools Alternative -Replacement for Slackware's core package management tools. +An alternative set of Slackware's core package management tools. -You can help improve this project through [funding](https://funding.server.ky/project/pkgtools-go). +Planned improvements and known issues are listed on the project's [issue tracker](https://todo.sr.ht/~slack-coder/pkgtools-go). You can help improve this project through [funding](https://funding.server.ky/project/pkgtools-go). ## Benefits @@ -28,21 +28,26 @@ The recommended way to build these tools is to call this command from within the directory. The additional parameters are recommended to minimize external dependencies. +You likely want to set the GOBIN environment variable to your preferred install +location. + ``` - go build -ldflags="-linkmode external -extldflags -static" ./cmd/installpkg + go install \ + -ldflags="-linkmode external -extldflags -static" \ + -a ./cmd/... ``` ## Whats included? +The commands 'installpkg' and 'removepkg' are included. + These tools are planned to be included: - - installpkg - - removepkg + - explodepkg - upgradepkg These tools will likely not be included: - - explodepkg - makepkg - pkgdiff - pkgtool |