freebsd-ports/graphics/rubygem-ruby-vips/Makefile
Sunpoet Po-Chuan Hsieh e9008d65a6 Add rubygem-ruby-vips 2.0.17
This gem is a Ruby binding for the libvips image processing library.

Programs that use ruby-vips don't manipulate images directly, instead they
create pipelines of image processing operations building on a source image. When
the end of the pipe is connected to a destination, the whole pipeline executes
at once, streaming the image in parallel from source to destination a section at
a time. Because ruby-vips is parallel, it's quick, and because it doesn't need
to keep entire images in memory, it's light.

WWW: https://github.com/libvips/ruby-vips
2020-02-02 10:55:21 +00:00

27 lines
526 B
Makefile

# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= ruby-vips
PORTVERSION= 2.0.17
CATEGORIES= graphics rubygems
MASTER_SITES= RG
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Binding for the vips image processing library
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
LIB_DEPENDS= libvips.so:graphics/vips
RUN_DEPENDS= rubygem-ffi>=1.9<2:devel/rubygem-ffi
USES= gem gnome shebangfix
USE_GNOME= glib20
USE_RUBY= yes
NO_ARCH= yes
SHEBANG_FILES= install-vips.sh \
example/*.rb
.include <bsd.port.mk>