fae6433078
libdmtx is open source software for reading and writing Data Matrix barcodes. At its core libdmtx is a native shared library, allowing C/C++ programs to use its capabilities without extra restrictions or overhead. Tested on i386,macppc by me, amd64 by Kyrill Bychkov Feedback and OK sthen@
24 lines
535 B
Makefile
24 lines
535 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/01/14 08:55:17 sebastia Exp $
|
|
|
|
COMMENT = library for handling data matrix barcodes
|
|
|
|
DISTNAME = libdmtx-0.7.4
|
|
CATEGORIES = devel graphics
|
|
SHARED_LIBS += dmtx 0.0 # 0.0
|
|
|
|
HOMEPAGE = http://www.libdmtx.org/
|
|
MAINTAINER = Sebastian Reitenbach <sebastia@openbsd.org>
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=libdmtx/}
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
|
|
WANTLIB += m
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
.include <bsd.port.mk>
|