30 lines
655 B
Makefile
30 lines
655 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/09/20 14:08:47 pedro Exp $
|
|
|
|
COMMENT= "Lua binding for the OpenSSL crypto libraries"
|
|
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
|
|
|
|
DISTNAME= luacrypto-0.1.1
|
|
CATEGORIES= security
|
|
|
|
MASTER_SITES= http://luaforge.net/frs/download.php/1395/
|
|
HOMEPAGE= http://luacrypto.luaforge.net/
|
|
|
|
MAINTAINER= Pedro Martelletto <pedro@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
USE_GMAKE= Yes
|
|
WANTLIB= crypto
|
|
REGRESS_TARGET= tests
|
|
CFLAGS+= -fPIC -DPIC
|
|
|
|
BUILD_DEPENDS= ::lang/lua
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
REGRESS_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|