Library for converting ANSI, ASCII, and other formats to PNG, allowing to render ANSI and artscene-related file formats into PNG images, and supporting ANSI (.ANS), PCBoard (.PCB), Binary (.BIN), Artworx (.ADF), iCE Draw (.IDF), Tundra (.TND) and XBin (.XB) formats. It creates size optimized 4-bit PNG files and supports SAUCE (Standard Architecture for Universal Comment Extentions), 80x25 and 80x50 PC fonts (including all the 14 MS-DOS charsets), Amiga fonts, and iCE colors. OK sthen@
32 lines
617 B
Makefile
32 lines
617 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2019/01/18 11:36:25 fcambus Exp $
|
|
|
|
COMMENT = library for converting ANSI, ASCII, and other formats to PNG
|
|
|
|
V = 1.1.0
|
|
DISTNAME = libansilove-${V}
|
|
|
|
SHARED_LIBS += ansilove 0.0 # 1.1
|
|
|
|
CATEGORIES = graphics
|
|
|
|
HOMEPAGE = https://www.ansilove.org/
|
|
|
|
MAINTAINER = Frederic Cambus <fcambus@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MASTER_SITES = https://github.com/ansilove/libansilove/releases/download/${V}/
|
|
|
|
WANTLIB = m gd
|
|
|
|
LIB_DEPENDS = graphics/gd
|
|
|
|
MODULES = devel/cmake
|
|
NO_TEST = Yes
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/libansilove.3 ${PREFIX}/man/man3
|
|
|
|
.include <bsd.port.mk>
|