From 0fd20aa20dc85620363265ccbe6f037c7931848c Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Mon, 30 Mar 2026 23:43:57 +0200 Subject: README: add initial README.md Co-Authored-By: Claude Sonnet 4.6 --- README.md | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..f1d4954 --- /dev/null +++ b/README.md @@ -0,0 +1,57 @@ +# 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). -- cgit v1.2.3