mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
95142eca70
The port has moved to github and py-yara is no longer a separate tarball for distribution. It is now bundled with the yara code. At some point I want to make py-yara not depend directly upon yara. This way you can get just the python bindings without needing to install yara itself.
30 lines
510 B
Makefile
30 lines
510 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= yara
|
|
PORTVERSION= 2.0.0
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= wxs@FreeBSD.org
|
|
COMMENT= A malware identification and classification tool
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= plusvic
|
|
GH_TAGNAME= v2.0.0
|
|
GH_COMMIT= d5dbefb
|
|
|
|
USE_AUTOTOOLS= libtool aclocal autoheader automake
|
|
GNU_CONFIGURE= yes
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_LDCONFIG= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
MAN1= yara.1
|
|
|
|
NO_STAGE= yes
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC} && ${SH} ./bootstrap.sh
|
|
|
|
.include <bsd.port.mk>
|