pkgsrc/graphics/libspiro/Makefile
adam d4c82145e2 Spiro is the creation of Raph Levien. It simplifies the drawing of beautiful
curves.

Using bezier splines an artist can easily draw curves with the same slope on
either side of an on-curve point. Spiros, on the other hand, are based on
clothoid splines which make it easy to maintain constant curvature as well as
constant slope. Such curves will simply look nicer.

Raph Levien's spiro splines only use on-curve points and so are easier to use
and more intuitive to the artist.

This library will take an array of spiro control points and convert them into
a series of bezier splines which can then be used in the myriad of ways the
world has come to use beziers.
2017-05-04 19:21:35 +00:00

24 lines
603 B
Makefile

# $NetBSD: Makefile,v 1.1 2017/05/04 19:21:35 adam Exp $
DISTNAME= libspiro-dist-0.5.20150702
PKGNAME= ${DISTNAME:S/-dist-/-/}
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_GITHUB:=fontforge/}
MAINTAINER= adam@NetBSD.org
HOMEPAGE= http://fontforge.github.io/
COMMENT= Simplifies the drawing of beautiful curves
LICENSE= gnu-gpl-v3
GITHUB_PROJECT= libspiro
GITHUB_RELEASE= ${PKGVERSION_NOREV}
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
USE_LANGUAGES= c
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
#PKGCONFIG_OVERRIDE_STAGE= post-configure
PKGCONFIG_OVERRIDE+= libspiro.pc.in
.include "../../mk/bsd.pkg.mk"