https://github.com/mrtazz/pkgr
tool to create pkgng packages from a directory
https://github.com/mrtazz/pkgr
Last synced: 9 months ago
JSON representation
tool to create pkgng packages from a directory
- Host: GitHub
- URL: https://github.com/mrtazz/pkgr
- Owner: mrtazz
- License: mit
- Created: 2018-08-19T19:52:29.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2022-02-09T20:39:59.000Z (over 4 years ago)
- Last Synced: 2025-03-21T02:29:14.286Z (over 1 year ago)
- Language: Go
- Size: 226 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# pkgr
[](https://travis-ci.org/mrtazz/pkgr)
[](https://coveralls.io/github/mrtazz/pkgr?branch=master)
[](https://packagecloud.io/mrtazz/pkgr)
[](http://opensource.org/licenses/MIT)
## Overview
Simple tool to create FreeBSD packages from a directory. This basically
implements that one single use case from [fpm][]. If you need anything more
than this you should probably check out fpm.
## Usage
```
portal:pkgr[master]% cat MANIFEST
{
"name": "pkgr",
"version": "0.1.0-1",
"comment": "create pkgng packages from directory",
"desc": "create pkgng packages from directory",
"maintainer": "Daniel Schauenberg ",
"www": "https://github.com/mrtazz/pkgr"
}
portal:pkgr[master]% ./pkgr --manifest MANIFEST --path usr
```
## Why?
I dealt with a bunch of gem dependency issues on my FreeBSD build box with
fpm. And after tracking the issues down and opening issues on fpm I got
curious how it would look like to implement the one use case I needed in Go.
## Inspiration
This basically implements one simple use case of [fpm][].
[fpm]: https://github.com/jordansissel/fpm