aboutsummaryrefslogtreecommitdiffstats
path: root/CLAUDE.md
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-04-01 22:56:07 +0200
committerDanilo M. <danix@danix.xyz>2026-04-01 22:58:53 +0200
commit1045963959ddfb697898fa90476f837aae4e2881 (patch)
treef4f93fcd99ea0f2dfa1342d79baef10d5f66cc7c /CLAUDE.md
parentfbb8e8f558f541d6a573105dc369ba7c563f78eb (diff)
downloadmy-slackbuilds-1045963959ddfb697898fa90476f837aae4e2881.tar.gz
my-slackbuilds-1045963959ddfb697898fa90476f837aae4e2881.zip
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 <noreply@anthropic.com>
Diffstat (limited to 'CLAUDE.md')
-rw-r--r--CLAUDE.md29
1 files changed, 14 insertions, 15 deletions
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:
```
-<package-name>/
-├── <package-name>.SlackBuild # Main build script
-├── <package-name>.info # Metadata (version, checksums, URLs)
-├── README # Description and usage notes
-├── slack-desc # Package description (11-line format)
-└── <package-name>.desktop # (optional) Desktop entry for GUI apps
+SlackBuilds/
+└── <package-name>/
+ ├── <package-name>.SlackBuild # Main build script
+ ├── <package-name>.info # Metadata (version, checksums, URLs)
+ ├── README # Description and usage notes
+ ├── slack-desc # Package description (11-line format)
+ └── <package-name>.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 <package-name> && sbofixinfo
+cd SlackBuilds/<package-name> && sbofixinfo
# 2. Download sources and verify checksums
-cd <package-name> && sbodl
+cd SlackBuilds/<package-name> && sbodl
# 3. Lint the script and metadata
-cd <package-name> && sbolint
+cd SlackBuilds/<package-name> && sbolint
# 4. Build the package
-cd <package-name> && sudo bash <package-name>.SlackBuild
+cd SlackBuilds/<package-name> && sudo bash <package-name>.SlackBuild
# 5. Lint the built package
-cd <package-name> && sbopkglint
+cd SlackBuilds/<package-name> && sbopkglint
# 6. Add an entry for the package in the repo-level nvchecker.toml
# 7. Commit (pre-commit hook runs sbolint automatically)
-git add <package-name>/ nvchecker.toml
+git add SlackBuilds/<package-name>/ nvchecker.toml
git commit -m'<package-name>: add version X.Y.Z'
```