c2e423e350
4.2.7 * Fix Ruby 1.9.3 4.2.5 * Fixed MiniMagick::Image#details parsing 4.2.4 * Fixed detecting MiniMagick version * Fix the private method 'format' called on mogrify for real 4.2.3 * Fixed a rush mistake 4.2.2 * Raise proper error in #cheap_info on invalid image * Improved MiniMagick::Image#details parsing * Attempt to solve private method 'format' called on mogrify 4.2.1 * Attempt to fix #279 4.1.1 * Fix MiniMagick::Image#composite defaulting to JPG extension. The default is now the extension of the base image, the one on which composite is called.
19 lines
552 B
Makefile
19 lines
552 B
Makefile
# $NetBSD: Makefile,v 1.15 2015/06/07 10:43:50 taca Exp $
|
|
|
|
DISTNAME= mini_magick-4.2.7
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/_/-/}
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/minimagick/minimagick
|
|
COMMENT= Ruby wrapper for ImageMagick command line
|
|
LICENSE= mit
|
|
|
|
# MiniMagick uses mogrify(1) or gm(1) from ImageMagick.
|
|
DEPENDS+= ImageMagick-[0-9]*:../../graphics/ImageMagick
|
|
|
|
pre-configure:
|
|
${FIND} ${WRKSRC} -type f -exec ${CHMOD} -x {} \;
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|