fpm-cookery icon indicating copy to clipboard operation
fpm-cookery copied to clipboard

A tool for building software packages with fpm.

Results 37 fpm-cookery issues
Sort by recently updated
recently updated
newest added

Hi, I raised this on the FPM project too, but wondered if you had any insights related to doing this via a recipe: https://github.com/jordansissel/fpm/issues/1659 We want to make sure the...

Setting the field to a format string value changes the filename of the created package. If unset, FPM chooses its default format. See the following code section for available format...

Extracting from a zip file creates an additional directory in the build dir hierarchy, while extracting from a tarball does not. This causes some builds from zip files to fail,...

Heya! One of my recipes requires fetching multiple source files (several tars and git repositories) to build package. So I've implemented source handler which allows you to specify array of...

Hi, Sometimes, a tar ball does not retain the parent directory. e.g. After type `tar -xvf abc.tar.gz` , there are some sub directories under the `builddir` like `src`, `doc`... instead...

- Remove --no-deps option. - Add --install-build-depends option to install build dependencies only. - Add --install-depends option to install all declared dependencies. - Disable automatic dependency installation on "fpm-cook package"....

this is to add impelementation for #119 to use: ``` ruby rpm_attributes['/etc/myapp'] = '751,root,http' ``` as the `.attrs` seems to be rpm-only, prefixed it with `rpm_`: ``` $ fpm --help|grep...

This breaks nginx configuration. See the configure arguments here: https://github.com/nginx/nginx/blob/master/auto/options Is there a good reason for this translation? Somehow the user didn't actually intend an underscore?

I experimented with [pleaserun](https://github.com/jordansissel/pleaserun) support for fpm-cookery. Example: ``` ruby class Redis < FPM::Cookery::Recipe # ... # Creates first startup script for redis-server binary with default settings startup_script '/usr/bin/redis-server' #...

feature

I have a recipe in which I want to set a unique value for `JAVA_HOME`. I have the following code: ``` class Package < FPM::Cookery::Recipe ... def build environment['JAVA_HOME'] =...