8b4093cba5
The only reason to use post-stage is because the port needs to do "things" at a later time, like some plist manipulation. While there, fold post-install in do-install targets when they are defined. PR: 214780 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight
27 lines
639 B
Makefile
27 lines
639 B
Makefile
# Created by: Kurt Jaeger <fbsd-ports@opsec.eu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= CBOR-XS
|
|
PORTVERSION= 1.30
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
MASTER_SITE_SUBDIR= CPAN:MLEHMANN
|
|
PKGNAMEPREFIX= p5-
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:C/0$//}
|
|
|
|
MAINTAINER= pi@FreeBSD.org
|
|
COMMENT= Perl does Concise Binary Object Representation (CBOR, RFC7049)
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
BUILD_DEPENDS= p5-Types-Serialiser>=0:devel/p5-Types-Serialiser \
|
|
p5-common-sense>=0:devel/p5-common-sense
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/CBOR/XS/XS.so
|
|
|
|
.include <bsd.port.mk>
|