# my-slackbuilds Personal collection of SlackBuild scripts by danix, following [SlackBuilds.org (SBo)](https://slackbuilds.org) conventions. Primarily targeting **Slackware64-current**. --- ## Repository Structure Each package lives in its own top-level directory: ``` / ├── .SlackBuild # Main build script ├── .info # Metadata (version, checksums, URLs) ├── README # Description and usage notes ├── slack-desc # Package description (11-line format) └── .desktop # (optional) Desktop entry for GUI apps ``` --- ## Usage ### Prerequisites - Slackware64-current - Root access (required to run `.SlackBuild` scripts) - [`sbo-maintainer-tools`](https://slackware.uk/~urchlay/repos/sbo-maintainer-tools) (optional, for linting and source downloads) ### Building a package ```bash # Clone the repository git clone https://github.com/danix/my-slackbuilds.git cd my-slackbuilds # Download the source and verify checksums sbodl / # Log in as root, then build the package cd bash .SlackBuild # Install the resulting package installpkg /tmp/-*.t?z ``` Check each package's `README` for dependencies and any special build instructions. --- ## License GPL-2.0 — see [LICENSE](LICENSE).