mcollina / heroku-buildpack-graphicsmagick

67 stars 77 forks source link

Packaging tries to put files in `/app` #26

Closed milgner closed 8 years ago

milgner commented 8 years ago

I'm just trying to create a build using updated versions of graphicsmagick, nasm and libpng.

The packaging process tries to put stuff in /app which of course is not present on my system. Is one supposed to execute the support/package_graphicsmagick script from the Vagrant machine, too?

Otherwise I'd propose make installing the files into a fake root directory instead and creating the packages from there.

benalavi commented 8 years ago

@milgner Yeah you'll want to compile and package the libraries on a heroku dyno or on the vagrant VM (which is essentially a heroku dyno) so they compile with the same libraries available on heroku.

milgner commented 8 years ago

Alright, thanks for the tip!