https://github.com/samwhelp/deb-coffee
deb-coffee
https://github.com/samwhelp/deb-coffee
deb deb-recipe debian pacscript pacstall
Last synced: 8 months 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-19T05:32:42.000Z (about 1 year ago)
- Last Synced: 2025-02-03T13:11:49.815Z (about 1 year ago)
- Topics: deb, deb-recipe, debian, pacscript, pacstall
- Language: Shell
- Homepage: https://samwhelp.github.io/deb-coffee/
- Size: 48.8 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)
* [pacstall-packaging](https://github.com/samwhelp/pacstall-packaging)
| deb-coffee |
| ---------- |
| [deb-coffee](https://github.com/samwhelp/deb-coffee) |
| [deb-coffee-maccity](https://github.com/samwhelp/deb-coffee-maccity) |
| [deb-coffee-wincity](https://github.com/samwhelp/deb-coffee-wincity) |
| [deb-coffee-fancy](https://github.com/samwhelp/deb-coffee-fancy) |
| [deb-coffee-gruvbox](https://github.com/samwhelp/deb-coffee-gruvbox) |
| [deb-coffee-grub](https://github.com/samwhelp/deb-coffee-grub) |
| [deb-coffee-sddm](https://github.com/samwhelp/deb-coffee-sddm) |
## 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`
## Howto
### Search
``` sh
pacstall -S demo
```
``` sh
pacstall -S bean
```
### Build and Install
``` sh
pacstall -I demo
```
### Only Build
``` sh
pacstall -I -B demo
```
### Download pacscript
``` sh
pacstall -D demo
```