31 lines
550 B
Makefile
31 lines
550 B
Makefile
# $OpenBSD: Makefile,v 1.11 2021/01/09 15:45:37 jasper Exp $
|
|
|
|
BROKEN-powerpc64 = non-portable altivec / gcc-isms
|
|
|
|
COMMENT= hashcash anti-spam / denial of service counter-measure tool
|
|
|
|
DISTNAME= hashcash-1.22
|
|
CATEGORIES= mail
|
|
|
|
HOMEPAGE= http://www.hashcash.org/
|
|
|
|
MAINTAINER= Armin Wolfermann <armin@wolfermann.org>
|
|
|
|
# public domain
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB= c
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/source/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
ALL_TARGET= x86
|
|
.else
|
|
ALL_TARGET= generic
|
|
.endif
|
|
|
|
NO_TEST= Yes
|
|
|
|
.include <bsd.port.mk>
|