💾 Archived View for anachronauts.club › cgi-bin › repos › cgi › ports.git › tree › trunk › devel › c… captured on 2022-01-08 at 13:59:20. 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-srfi-13/Makefile | 697 bytes

view raw

 1 # $FreeBSD$
 2 
 3 PORTNAME=	srfi-13
 4 DISTVERSION=	1.4
 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=	SRFI 13 (string library)
12 
13 MY_DEPENDS=	${PREFIX}/lib/chicken5/11/srfi-14.egg-info:devel/chicken5-srfi-14
14 RUN_DEPENDS=	chicken5:lang/chicken5 \
15 		${MY_DEPENDS}
16 BUILD_DEPENDS=	chicken-install5:lang/chicken5 \
17 		${MY_DEPENDS}
18 
19 CSC_OPTIONS=	-v -strip
20 
21 do-build:
22 	cd ${WRKSRC} && chicken-install5 \
23 		-v -no-install -no-install-dependencies
24 
25 do-install:
26 	cd ${WRKSRC} && DESTDIR=${STAGEDIR} chicken-install5 \
27 		-v -no-install-dependencies
28 
29 .export CSC_OPTIONS
30 .include <bsd.port.mk>