From 1045963959ddfb697898fa90476f837aae4e2881 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Wed, 1 Apr 2026 22:56:07 +0200 Subject: repo: move all packages under SlackBuilds/ subfolder Reorganize repository by moving all 11 package directories into a new SlackBuilds/ subfolder. Update README.md, CLAUDE.md, and hooks/post-commit to reflect the new path structure. Co-Authored-By: Claude Sonnet 4.6 --- CLAUDE.md | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) (limited to 'CLAUDE.md') diff --git a/CLAUDE.md b/CLAUDE.md index 868757e..8c530b4 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -7,19 +7,18 @@ Personal collection of SlackBuild scripts maintained by Danilo, compatible with ## Repo Structure -Each package lives in its own top-level directory named after the package: +All packages live under the `SlackBuilds/` subfolder: ``` -/ -├── .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 +SlackBuilds/ +└── / + ├── .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 ``` -No category subdirectories — all packages are at the repo root. - Version tracking is handled by a single repo-level file: ``` @@ -120,24 +119,24 @@ SBOLINT=no git commit -m'Message here' ```bash # 1. Fix any .info issues automatically -cd && sbofixinfo +cd SlackBuilds/ && sbofixinfo # 2. Download sources and verify checksums -cd && sbodl +cd SlackBuilds/ && sbodl # 3. Lint the script and metadata -cd && sbolint +cd SlackBuilds/ && sbolint # 4. Build the package -cd && sudo bash .SlackBuild +cd SlackBuilds/ && sudo bash .SlackBuild # 5. Lint the built package -cd && sbopkglint +cd SlackBuilds/ && sbopkglint # 6. Add an entry for the package in the repo-level nvchecker.toml # 7. Commit (pre-commit hook runs sbolint automatically) -git add / nvchecker.toml +git add SlackBuilds// nvchecker.toml git commit -m': add version X.Y.Z' ``` -- cgit v1.2.3