💾 Archived View for anachronauts.club › cgi-bin › repos › cgi › ports.git › tree › trunk › devel › c… captured on 2022-01-08 at 13:58:44. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-12-05)

-=-=-=-=-=-=-

ports.git

git @ anachronauts.club

summary

tree

log

refs

ports.git/devel/chicken5-regex/Makefile | 582 bytes

view raw

 1 # $FreeBSD$
 2 
 3 PORTNAME=	regex
 4 DISTVERSION=	2.0
 5 PORTREVISION=	0
 6 CATEGORIES=	devel
 7 MASTER_SITES=	https://code.call-cc.org/egg-tarballs/5/${PORTNAME}/
 8 PKGNAMEPREFIX=	chicken5-
 9 
10 MAINTAINER=	sage@anachronauts.club
11 COMMENT=	Old regex API for CHICKEN
12 
13 RUN_DEPENDS=	chicken5:lang/chicken5
14 BUILD_DEPENDS=	chicken-install5:lang/chicken5
15 
16 CSC_OPTIONS=	-v -strip
17 
18 do-build:
19 	cd ${WRKSRC} && chicken-install5 \
20 		-v -no-install -no-install-dependencies
21 
22 do-install:
23 	cd ${WRKSRC} && DESTDIR=${STAGEDIR} chicken-install5 \
24 		-v -no-install-dependencies
25 
26 .export CSC_OPTIONS
27 .include <bsd.port.mk>