Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samwhelp/deb-coffee
deb-coffee
https://github.com/samwhelp/deb-coffee
deb deb-recipe debian pacscript pacstall
Last synced: 1 day ago
JSON representation
deb-coffee
- Host: GitHub
- URL: https://github.com/samwhelp/deb-coffee
- Owner: samwhelp
- License: mit
- Created: 2024-12-06T04:58:00.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-01-18T08:48:15.000Z (18 days ago)
- Last Synced: 2025-01-18T09:29:00.736Z (18 days ago)
- Topics: deb, deb-recipe, debian, pacscript, pacstall
- Language: Shell
- Homepage: https://samwhelp.github.io/deb-coffee/
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deb-coffee
> [deb-coffee](https://samwhelp.github.io/deb-coffee/)
## Link
* Pacstall / [pacstall-programs](https://github.com/pacstall/pacstall-programs#pacstall-programs)
* Pacstall / Wiki / Pacscript 101 / [Example of script placement](https://github.com/pacstall/pacstall/wiki/Pacscript-101#pacscript-name)## Manpage
* $ [man pacstall](https://github.com/samwhelp/deb-coffee/blob/main/helper/share/manpage/pacstall.md#manpage)
## Pacstall Pacscript Repository Structure
```
.
├── packagelist
└── packages
└── demo
└── demo.pacscript
```## Update Db
run
``` sh
ls -1 packages > packagelist
```or run
``` sh
make db-update
```## View packagelist
run to view [packagelist](packagelist)
``` sh
less packagelist
```or run
``` sh
view packagelist
```## Add Repository / Remote
run
``` sh
pacstall -A https://raw.githubusercontent.com/samwhelp/deb-coffee/main
```or run
``` sh
pacstall -A https://github.com/samwhelp/deb-coffee/tree/main
```run
``` sh
cat /usr/share/pacstall/repo/pacstallrepo
```show
```
https://raw.githubusercontent.com/pacstall/pacstall-programs/master
https://raw.githubusercontent.com/samwhelp/deb-coffee/main
```## Add Repository / Local
run
``` sh
git clone https://github.com/samwhelp/deb-coffee.git ~/Documents/deb-coffee
```run
``` sh
pacstall -A "file://${HOME}/Documents/deb-coffee"
```> See Also `man 8 pacstall`
## Demo
### Search
``` sh
pacstall -S demo
```### Build and Install
``` sh
pacstall -I demo
```### Only Build
``` sh
pacstall -I -B demo
```### Download pacscript
``` sh
pacstall -D demo
```