Refactoring repository...
Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run

This commit is contained in:
CELESTIFYX
2025-01-14 19:02:06 +02:00
parent 876fa0988e
commit 08abac9e7d
33171 changed files with 4677 additions and 761 deletions

13
.gitignore vendored
View File

@@ -1,6 +1,11 @@
# Removing non essentails to git ignore
*.zst
*.sig
*pkg
*src
/*/x86_64/*
/*/source/*/src
/*/source/*/pkg
/*/source/*/*.gz
/*/source/*/*.zst
/*/source/*/*.bz2
/*/source/*/*.zip
/*/source/*/*.xz
/*/source/*/*.rar

View File

@@ -50,14 +50,32 @@ The directory structure of this repository is organized as follows:
```
snigdhaos-pkgbuilds/
├── PKGBUILDs/ # Directory containing individual PKGBUILD files for software packages
│ ├── package1/ # Directory for a single package (e.g., package1)
│ │ ── PKGBUILD # PKGBUILD script for package1
├── package2/ # Directory for another package (e.g., package2)
│ │ ── PKGBUILD # PKGBUILD script for package2
├── REPO_NAME/
│ ├── source/
│ │ ── package1/
└── PKGBUILD
│ │ ── package2/
│ │ │ └── PKGBUILD
│ │ └── ...
│ ├── x86_64/
│ │ ├── package1.pkg.tar.zst
│ │ ├── package1.pkg.tar.zst.sig
│ │ ├── package2.pkg.tar.zst
│ │ ├── package2.pkg.tar.zst.sig
│ │ └── ...
│ └── packages.json
├── archive/
│ ├── package1/
│ │ └── PKGBUILD
│ ├── package2/
│ │ └── PKGBUILD
│ └── ...
├── README.md # This README file
── LICENSE # Project license file
├── config.sh
── LICENSE
├── parse_packages
├── push.sh
├── README.md
└── update_packages
```
### Explanation of the Structure:

Some files were not shown because too many files have changed in this diff Show More