https://github.com/shpkg/repo
the only official software repository for shpkg
https://github.com/shpkg/repo
Last synced: 8 months ago
JSON representation
the only official software repository for shpkg
- Host: GitHub
- URL: https://github.com/shpkg/repo
- Owner: shpkg
- License: agpl-3.0
- Created: 2024-11-25T17:24:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-27T14:55:09.000Z (over 1 year ago)
- Last Synced: 2025-07-22T04:06:59.626Z (11 months ago)
- Language: Shell
- Size: 18.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## what are the requirements for packages?
well, let's see...
- both software installed and the installer script **MUST** be open-source, accessible via a git/mercurial/subversion repository.
- both software installed and the installer script **MUST NOT** contain [any type of malware](https://en.wikipedia.org/wiki/Category:Types_of_malware)
- the so-called "installer" **MUST** install **ONLY** the software and **ITS DEPENDENCIES**. bundleware **IS NOT** allowed.
- the installer **MUST** actually **INSTALL** the package it is connected to. **EMPTY** shell scripts are **NOT** allowed.
- the installer should add
```bash
# shpkg-name! package-name
# shpkg-desc! package-description
# shpkg-by! package-author
```
at the top of the file, **AFTER** the shebang line. (it makes us easier to manage the packages)
## how can i add my package here?
1. fork the git repository `https://github.com/shpkg/repo`.
2. add your install script to /install. for example, if i wanted to add *betterfetch*, i would create a file called `betterfetch.sh`. make sure that you added the shpkg properties after the shebang line.
3. add your uninstall script to /uninstall. for example, if i wanted to add *betterfetch*, i would create a file called `betterfetch.sh`. make sure that you added the shpkg properties after the shebang line.
4. open a pull request. do not forget to answer the questions in the pull request template.
5. wait! congrats, you just submitted your first ever sh package!