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 # Removing non essentails to git ignore
*.zst /*/x86_64/*
*.sig /*/source/*/src
*pkg /*/source/*/pkg
*src /*/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/ snigdhaos-pkgbuilds/
├── PKGBUILDs/ # Directory containing individual PKGBUILD files for software packages ├── REPO_NAME/
│ ├── package1/ # Directory for a single package (e.g., package1) │ ├── source/
│ │ ── PKGBUILD # PKGBUILD script for package1 │ │ ── package1/
├── package2/ # Directory for another package (e.g., package2) └── PKGBUILD
│ │ ── PKGBUILD # PKGBUILD script for package2 │ │ ── 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 ├── config.sh
── LICENSE # Project license file ── LICENSE
├── parse_packages
├── push.sh
├── README.md
└── update_packages
``` ```
### Explanation of the Structure: ### Explanation of the Structure:

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