30 lines
622 B
Makefile
30 lines
622 B
Makefile
# $OpenBSD: Makefile,v 1.3 2007/07/04 19:18:46 jasper Exp $
|
|
|
|
COMMENT= "Lua binding for the OpenSSL crypto libraries"
|
|
SHARED_ONLY= Yes
|
|
|
|
DISTNAME= luacrypto-0.1.1
|
|
PKGNAME= ${DISTNAME}p0
|
|
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
|
|
|
|
RUN_DEPENDS= ::lang/lua
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|