https://github.com/missingcharacter/fpm-my-package
Yet another attempt at making RPMs/DEBs easy to create
https://github.com/missingcharacter/fpm-my-package
Last synced: 5 months ago
JSON representation
Yet another attempt at making RPMs/DEBs easy to create
- Host: GitHub
- URL: https://github.com/missingcharacter/fpm-my-package
- Owner: missingcharacter
- License: mit
- Created: 2019-04-28T16:04:40.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2026-01-15T23:29:54.000Z (5 months ago)
- Last Synced: 2026-01-16T03:03:30.802Z (5 months ago)
- Language: Shell
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Build RPMs/DEBs using Effing Package Manager
Note: Quick and dirty script
## Dependencies
- git
- curl
- docker
- [gum](https://github.com/charmbracelet/gum)
- [keyring](https://github.com/jaraco/keyring)
- [parallel](https://www.gnu.org/software/parallel/)
- MacOS: `parallel` can be installed via `brew`
- [yq](https://github.com/mikefarah/yq)
- [jq](https://stedolan.github.io/jq/)
## Run it like this
```shell
./scripts/main.sh
```
## How your `packages.yaml` should look like
```yaml
packages:
- name:
version:
release:
noarch:
source:
vendor:
maintainer:
license:
description:
deb_dependencies:
rpm_dependencies:
deb_flags:
rpm_flags:
files_flags:
no_fpm: |
```
## Where will packages appear?
### RPMs
```shell
./tmp-files/RPM
```
### DEBs
```shell
./tmp-files/DEB
```