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.
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 <d@unwiredcouch.com>",
"www": "https://github.com/mrtazz/pkgr"
}
portal:pkgr[master]% ./pkgr --manifest MANIFEST --path usr
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.
This basically implements one simple use case of fpm.