forked from opnsense/ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
40 lines (28 loc) · 813 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Created by: Ekkehard 'Ekki' Gehm <[email protected]>
# $FreeBSD$
PORTNAME= aespipe
DISTVERSION= v2.4c
CATEGORIES= security
MASTER_SITES= http://loop-aes.sourceforge.net/${PORTNAME}/ \
http://koti.tnnet.fi/jari.ruusu/linux/
MAINTAINER= [email protected]
COMMENT= AES encrypting or decrypting pipe
LICENSE= GPLv2
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
USES= tar:bzip2
GNU_CONFIGURE= yes
PLIST_FILES= bin/aespipe man/man1/aespipe.1.gz
.include <bsd.port.pre.mk>
ALL_TARGET=
.if ${ARCH} == amd64
MAKE_ARGS= amd64
.endif
.if ${ARCH} == i386
MAKE_ARGS= x86
.endif
post-build:
cd ${WRKSRC} && make tests
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
.include <bsd.port.post.mk>